File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -110,17 +110,17 @@ impl AsRawFd for net::UdpSocket {
110
110
}
111
111
}
112
112
113
- #[ stable( feature = "rust1 " , since = "1.0 .0" ) ]
113
+ #[ stable( feature = "asraw_stdio " , since = "1.21 .0" ) ]
114
114
impl AsRawFd for io:: Stdin {
115
115
fn as_raw_fd ( & self ) -> RawFd { 0 }
116
116
}
117
117
118
- #[ stable( feature = "rust1 " , since = "1.0 .0" ) ]
118
+ #[ stable( feature = "asraw_stdio " , since = "1.21 .0" ) ]
119
119
impl AsRawFd for io:: Stdout {
120
120
fn as_raw_fd ( & self ) -> RawFd { 1 }
121
121
}
122
122
123
- #[ stable( feature = "rust1 " , since = "1.0 .0" ) ]
123
+ #[ stable( feature = "asraw_stdio " , since = "1.21 .0" ) ]
124
124
impl AsRawFd for io:: Stderr {
125
125
fn as_raw_fd ( & self ) -> RawFd { 2 }
126
126
}
Original file line number Diff line number Diff line change @@ -106,17 +106,17 @@ impl AsRawFd for net::UdpSocket {
106
106
fn as_raw_fd ( & self ) -> RawFd { * self . as_inner ( ) . socket ( ) . as_inner ( ) }
107
107
}
108
108
109
- #[ stable( feature = "rust1 " , since = "1.0 .0" ) ]
109
+ #[ stable( feature = "asraw_stdio " , since = "1.21 .0" ) ]
110
110
impl AsRawFd for io:: Stdin {
111
111
fn as_raw_fd ( & self ) -> RawFd { libc:: STDIN_FILENO }
112
112
}
113
113
114
- #[ stable( feature = "rust1 " , since = "1.0 .0" ) ]
114
+ #[ stable( feature = "asraw_stdio " , since = "1.21 .0" ) ]
115
115
impl AsRawFd for io:: Stdout {
116
116
fn as_raw_fd ( & self ) -> RawFd { libc:: STDOUT_FILENO }
117
117
}
118
118
119
- #[ stable( feature = "rust1 " , since = "1.0 .0" ) ]
119
+ #[ stable( feature = "asraw_stdio " , since = "1.21 .0" ) ]
120
120
impl AsRawFd for io:: Stderr {
121
121
fn as_raw_fd ( & self ) -> RawFd { libc:: STDERR_FILENO }
122
122
}
You can’t perform that action at this time.
0 commit comments