File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 66//! match those defined by C, so that code that interacts with C will
77//! refer to the correct types.
88
9- #![ stable( feature = "" , since = "1.30.0" ) ]
9+ #![ stable( feature = "core_ffi " , since = "1.30.0" ) ]
1010#![ allow( non_camel_case_types) ]
1111
1212use crate :: fmt;
Original file line number Diff line number Diff line change @@ -1140,10 +1140,10 @@ pub fn read_to_string<R: Read>(mut reader: R) -> Result<String> {
11401140#[ repr( transparent) ]
11411141pub struct IoSliceMut < ' a > ( sys:: io:: IoSliceMut < ' a > ) ;
11421142
1143- #[ stable( feature = "iovec-send-sync " , since = "1.44.0" ) ]
1143+ #[ stable( feature = "iovec_send_sync " , since = "1.44.0" ) ]
11441144unsafe impl < ' a > Send for IoSliceMut < ' a > { }
11451145
1146- #[ stable( feature = "iovec-send-sync " , since = "1.44.0" ) ]
1146+ #[ stable( feature = "iovec_send_sync " , since = "1.44.0" ) ]
11471147unsafe impl < ' a > Sync for IoSliceMut < ' a > { }
11481148
11491149#[ stable( feature = "iovec" , since = "1.36.0" ) ]
@@ -1283,10 +1283,10 @@ impl<'a> DerefMut for IoSliceMut<'a> {
12831283#[ repr( transparent) ]
12841284pub struct IoSlice < ' a > ( sys:: io:: IoSlice < ' a > ) ;
12851285
1286- #[ stable( feature = "iovec-send-sync " , since = "1.44.0" ) ]
1286+ #[ stable( feature = "iovec_send_sync " , since = "1.44.0" ) ]
12871287unsafe impl < ' a > Send for IoSlice < ' a > { }
12881288
1289- #[ stable( feature = "iovec-send-sync " , since = "1.44.0" ) ]
1289+ #[ stable( feature = "iovec_send_sync " , since = "1.44.0" ) ]
12901290unsafe impl < ' a > Sync for IoSlice < ' a > { }
12911291
12921292#[ stable( feature = "iovec" , since = "1.36.0" ) ]
You can’t perform that action at this time.
0 commit comments