File tree 1 file changed +2
-4
lines changed
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,6 @@ pub trait FileExt {
84
84
/// # Examples
85
85
///
86
86
/// ```no_run
87
- /// #![feature(rw_exact_all_at)]
88
87
/// use std::io;
89
88
/// use std::fs::File;
90
89
/// use std::os::unix::prelude::FileExt;
@@ -99,7 +98,7 @@ pub trait FileExt {
99
98
/// Ok(())
100
99
/// }
101
100
/// ```
102
- #[ unstable ( feature = "rw_exact_all_at" , issue = "51984 " ) ]
101
+ #[ stable ( feature = "rw_exact_all_at" , since = "1.33.0 " ) ]
103
102
fn read_exact_at ( & self , mut buf : & mut [ u8 ] , mut offset : u64 ) -> io:: Result < ( ) > {
104
103
while !buf. is_empty ( ) {
105
104
match self . read_at ( buf, offset) {
@@ -181,7 +180,6 @@ pub trait FileExt {
181
180
/// # Examples
182
181
///
183
182
/// ```no_run
184
- /// #![feature(rw_exact_all_at)]
185
183
/// use std::fs::File;
186
184
/// use std::io;
187
185
/// use std::os::unix::prelude::FileExt;
@@ -194,7 +192,7 @@ pub trait FileExt {
194
192
/// Ok(())
195
193
/// }
196
194
/// ```
197
- #[ unstable ( feature = "rw_exact_all_at" , issue = "51984 " ) ]
195
+ #[ stable ( feature = "rw_exact_all_at" , since = "1.33.0 " ) ]
198
196
fn write_all_at ( & self , mut buf : & [ u8 ] , mut offset : u64 ) -> io:: Result < ( ) > {
199
197
while !buf. is_empty ( ) {
200
198
match self . write_at ( buf, offset) {
You can’t perform that action at this time.
0 commit comments