File tree 10 files changed +125
-62
lines changed
10 files changed +125
-62
lines changed Original file line number Diff line number Diff line change 69
69
#![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
70
70
html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
71
71
html_root_url = "https://doc.rust-lang.org/nightly/" ,
72
+ issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/" ,
72
73
test( no_crate_inject) ) ]
73
74
#![ no_std]
74
75
#![ cfg_attr( not( stage0) , needs_allocator) ]
Original file line number Diff line number Diff line change 26
26
html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
27
27
html_root_url = "https://doc.rust-lang.org/nightly/" ,
28
28
html_playground_url = "https://play.rust-lang.org/" ,
29
+ issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/" ,
29
30
test( no_crate_inject) ) ]
30
31
31
32
#![ allow( trivial_casts) ]
Original file line number Diff line number Diff line change 58
58
#![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
59
59
html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
60
60
html_root_url = "https://doc.rust-lang.org/nightly/" ,
61
- html_playground_url = "https://play.rust-lang.org/" ) ]
61
+ html_playground_url = "https://play.rust-lang.org/" ,
62
+ issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/" ) ]
62
63
#![ doc( test( no_crate_inject) ) ]
63
64
64
65
#![ no_core]
Original file line number Diff line number Diff line change 21
21
#![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
22
22
html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
23
23
html_root_url = "https://doc.rust-lang.org/nightly/" ,
24
- html_playground_url = "https://play.rust-lang.org/" ) ]
24
+ html_playground_url = "https://play.rust-lang.org/" ,
25
+ issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/" ) ]
25
26
#![ cfg_attr( test, feature( test) ) ]
26
27
27
28
//! Bindings for the C standard library and other platform libraries
Original file line number Diff line number Diff line change 30
30
html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
31
31
html_root_url = "https://doc.rust-lang.org/nightly/" ,
32
32
html_playground_url = "https://play.rust-lang.org/" ,
33
+ issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/" ,
33
34
test( no_crate_inject) ) ]
34
35
#![ no_std]
35
36
Original file line number Diff line number Diff line change @@ -2688,7 +2688,8 @@ pub struct Stability {
2688
2688
pub feature : String ,
2689
2689
pub since : String ,
2690
2690
pub deprecated_since : String ,
2691
- pub reason : String
2691
+ pub reason : String ,
2692
+ pub issue : Option < u32 >
2692
2693
}
2693
2694
2694
2695
impl Clean < Stability > for attr:: Stability {
@@ -2702,6 +2703,7 @@ impl Clean<Stability> for attr::Stability {
2702
2703
|istr| istr. to_string ( ) ) ,
2703
2704
reason : self . reason . as_ref ( ) . map_or ( "" . to_string ( ) ,
2704
2705
|interned| interned. to_string ( ) ) ,
2706
+ issue : self . issue ,
2705
2707
}
2706
2708
}
2707
2709
}
@@ -2717,6 +2719,7 @@ impl<'a> Clean<Stability> for &'a attr::Stability {
2717
2719
|istr| istr. to_string ( ) ) ,
2718
2720
reason : self . reason . as_ref ( ) . map_or ( "" . to_string ( ) ,
2719
2721
|interned| interned. to_string ( ) ) ,
2722
+ issue : self . issue ,
2720
2723
}
2721
2724
}
2722
2725
}
You can’t perform that action at this time.
0 commit comments