File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ pub trait FileExt {
109
109
/// Ok(())
110
110
/// }
111
111
/// ```
112
- #[ unstable( feature = "rw_exact_all_at" , issue = "0 " ) ]
112
+ #[ unstable( feature = "rw_exact_all_at" , issue = "51984 " ) ]
113
113
fn read_exact_at ( & self , mut buf : & mut [ u8 ] , mut offset : u64 ) -> io:: Result < ( ) > {
114
114
while !buf. is_empty ( ) {
115
115
match self . read_at ( buf, offset) {
@@ -204,7 +204,7 @@ pub trait FileExt {
204
204
/// Ok(())
205
205
/// }
206
206
/// ```
207
- #[ unstable( feature = "rw_exact_all_at" , issue = "0 " ) ]
207
+ #[ unstable( feature = "rw_exact_all_at" , issue = "51984 " ) ]
208
208
fn write_all_at ( & self , mut buf : & [ u8 ] , mut offset : u64 ) -> io:: Result < ( ) > {
209
209
while !buf. is_empty ( ) {
210
210
match self . write_at ( buf, offset) {
You can’t perform that action at this time.
0 commit comments