File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 6
6
//! match those defined by C, so that code that interacts with C will
7
7
//! refer to the correct types.
8
8
9
- #![ stable( feature = "" , since = "1.30.0" ) ]
9
+ #![ stable( feature = "core_ffi " , since = "1.30.0" ) ]
10
10
#![ allow( non_camel_case_types) ]
11
11
12
12
use 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> {
1140
1140
#[ repr( transparent) ]
1141
1141
pub struct IoSliceMut < ' a > ( sys:: io:: IoSliceMut < ' a > ) ;
1142
1142
1143
- #[ stable( feature = "iovec-send-sync " , since = "1.44.0" ) ]
1143
+ #[ stable( feature = "iovec_send_sync " , since = "1.44.0" ) ]
1144
1144
unsafe impl < ' a > Send for IoSliceMut < ' a > { }
1145
1145
1146
- #[ stable( feature = "iovec-send-sync " , since = "1.44.0" ) ]
1146
+ #[ stable( feature = "iovec_send_sync " , since = "1.44.0" ) ]
1147
1147
unsafe impl < ' a > Sync for IoSliceMut < ' a > { }
1148
1148
1149
1149
#[ stable( feature = "iovec" , since = "1.36.0" ) ]
@@ -1283,10 +1283,10 @@ impl<'a> DerefMut for IoSliceMut<'a> {
1283
1283
#[ repr( transparent) ]
1284
1284
pub struct IoSlice < ' a > ( sys:: io:: IoSlice < ' a > ) ;
1285
1285
1286
- #[ stable( feature = "iovec-send-sync " , since = "1.44.0" ) ]
1286
+ #[ stable( feature = "iovec_send_sync " , since = "1.44.0" ) ]
1287
1287
unsafe impl < ' a > Send for IoSlice < ' a > { }
1288
1288
1289
- #[ stable( feature = "iovec-send-sync " , since = "1.44.0" ) ]
1289
+ #[ stable( feature = "iovec_send_sync " , since = "1.44.0" ) ]
1290
1290
unsafe impl < ' a > Sync for IoSlice < ' a > { }
1291
1291
1292
1292
#[ stable( feature = "iovec" , since = "1.36.0" ) ]
Original file line number Diff line number Diff line change @@ -1594,7 +1594,7 @@ impl From<io::Stderr> for Stdio {
1594
1594
pub struct ExitStatus ( imp:: ExitStatus ) ;
1595
1595
1596
1596
/// The default value is one which indicates successful completion.
1597
- #[ stable( feature = "process-exitcode-default " , since = "1.73.0" ) ]
1597
+ #[ stable( feature = "process_exitstatus_default " , since = "1.73.0" ) ]
1598
1598
impl Default for ExitStatus {
1599
1599
fn default ( ) -> Self {
1600
1600
// Ideally this would be done by ExitCode::default().into() but that is complicated.
You can’t perform that action at this time.
0 commit comments