@@ -1811,23 +1811,53 @@ fn get_next_url(used_links: &mut FxHashSet<String>, url: String) -> String {
1811
1811
format ! ( "{}-{}" , url, add)
1812
1812
}
1813
1813
1814
+ struct SidebarLink {
1815
+ name : Symbol ,
1816
+ url : String ,
1817
+ }
1818
+
1819
+ impl fmt:: Display for SidebarLink {
1820
+ fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
1821
+ write ! ( f, "<a href=\" #{}\" >{}</a>" , self . url, self . name)
1822
+ }
1823
+ }
1824
+
1825
+ impl PartialEq for SidebarLink {
1826
+ fn eq ( & self , other : & Self ) -> bool {
1827
+ self . url == other. url
1828
+ }
1829
+ }
1830
+
1831
+ impl Eq for SidebarLink { }
1832
+
1833
+ impl PartialOrd for SidebarLink {
1834
+ fn partial_cmp ( & self , other : & Self ) -> Option < std:: cmp:: Ordering > {
1835
+ Some ( self . cmp ( other) )
1836
+ }
1837
+ }
1838
+
1839
+ impl Ord for SidebarLink {
1840
+ fn cmp ( & self , other : & Self ) -> std:: cmp:: Ordering {
1841
+ self . url . cmp ( & other. url )
1842
+ }
1843
+ }
1844
+
1814
1845
fn get_methods (
1815
1846
i : & clean:: Impl ,
1816
1847
for_deref : bool ,
1817
1848
used_links : & mut FxHashSet < String > ,
1818
1849
deref_mut : bool ,
1819
1850
tcx : TyCtxt < ' _ > ,
1820
- ) -> Vec < String > {
1851
+ ) -> Vec < SidebarLink > {
1821
1852
i. items
1822
1853
. iter ( )
1823
1854
. filter_map ( |item| match item. name {
1824
- Some ( ref name) if !name. is_empty ( ) && item. is_method ( ) => {
1855
+ Some ( name) if !name. is_empty ( ) && item. is_method ( ) => {
1825
1856
if !for_deref || should_render_item ( item, deref_mut, tcx) {
1826
- Some ( format ! (
1827
- "<a href=\" #{}\" >{}</a>" ,
1828
- get_next_url( used_links, format!( "method.{}" , name) ) ,
1829
- name
1830
- ) )
1857
+ Some ( SidebarLink {
1858
+ name,
1859
+ url : get_next_url ( used_links, format ! ( "method.{}" , name) ) ,
1860
+ } )
1831
1861
} else {
1832
1862
None
1833
1863
}
@@ -1837,6 +1867,22 @@ fn get_methods(
1837
1867
. collect :: < Vec < _ > > ( )
1838
1868
}
1839
1869
1870
+ fn get_associated_constants (
1871
+ i : & clean:: Impl ,
1872
+ used_links : & mut FxHashSet < String > ,
1873
+ ) -> Vec < SidebarLink > {
1874
+ i. items
1875
+ . iter ( )
1876
+ . filter_map ( |item| match item. name {
1877
+ Some ( name) if !name. is_empty ( ) && item. is_associated_const ( ) => Some ( SidebarLink {
1878
+ name,
1879
+ url : get_next_url ( used_links, format ! ( "associatedconstant.{}" , name) ) ,
1880
+ } ) ,
1881
+ _ => None ,
1882
+ } )
1883
+ . collect :: < Vec < _ > > ( )
1884
+ }
1885
+
1840
1886
// The point is to url encode any potential character from a type with genericity.
1841
1887
fn small_url_encode ( s : String ) -> String {
1842
1888
let mut st = String :: new ( ) ;
@@ -1881,23 +1927,40 @@ fn sidebar_assoc_items(cx: &Context<'_>, out: &mut Buffer, it: &clean::Item) {
1881
1927
1882
1928
{
1883
1929
let used_links_bor = & mut used_links;
1884
- let mut ret = v
1930
+ let mut assoc_consts = v
1931
+ . iter ( )
1932
+ . flat_map ( |i| get_associated_constants ( i. inner_impl ( ) , used_links_bor) )
1933
+ . collect :: < Vec < _ > > ( ) ;
1934
+ if !assoc_consts. is_empty ( ) {
1935
+ // We want links' order to be reproducible so we don't use unstable sort.
1936
+ assoc_consts. sort ( ) ;
1937
+
1938
+ out. push_str (
1939
+ "<h3 class=\" sidebar-title\" >\
1940
+ <a href=\" #implementations\" >Associated Constants</a>\
1941
+ </h3>\
1942
+ <div class=\" sidebar-links\" >",
1943
+ ) ;
1944
+ for line in assoc_consts {
1945
+ write ! ( out, "{}" , line) ;
1946
+ }
1947
+ out. push_str ( "</div>" ) ;
1948
+ }
1949
+ let mut methods = v
1885
1950
. iter ( )
1886
1951
. filter ( |i| i. inner_impl ( ) . trait_ . is_none ( ) )
1887
- . flat_map ( move |i| {
1888
- get_methods ( i. inner_impl ( ) , false , used_links_bor, false , cx. tcx ( ) )
1889
- } )
1952
+ . flat_map ( |i| get_methods ( i. inner_impl ( ) , false , used_links_bor, false , cx. tcx ( ) ) )
1890
1953
. collect :: < Vec < _ > > ( ) ;
1891
- if !ret . is_empty ( ) {
1954
+ if !methods . is_empty ( ) {
1892
1955
// We want links' order to be reproducible so we don't use unstable sort.
1893
- ret . sort ( ) ;
1956
+ methods . sort ( ) ;
1894
1957
1895
1958
out. push_str (
1896
1959
"<h3 class=\" sidebar-title\" ><a href=\" #implementations\" >Methods</a></h3>\
1897
1960
<div class=\" sidebar-links\" >",
1898
1961
) ;
1899
- for line in ret {
1900
- out . push_str ( & line) ;
1962
+ for line in methods {
1963
+ write ! ( out , "{}" , line) ;
1901
1964
}
1902
1965
out. push_str ( "</div>" ) ;
1903
1966
}
@@ -2032,7 +2095,7 @@ fn sidebar_deref_methods(cx: &Context<'_>, out: &mut Buffer, impl_: &Impl, v: &V
2032
2095
ret. sort ( ) ;
2033
2096
out. push_str ( "<div class=\" sidebar-links\" >" ) ;
2034
2097
for link in ret {
2035
- out . push_str ( & link) ;
2098
+ write ! ( out , "{}" , link) ;
2036
2099
}
2037
2100
out. push_str ( "</div>" ) ;
2038
2101
}
0 commit comments