File tree 1 file changed +0
-2
lines changed
1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,6 @@ pub trait FileExt {
72
72
/// If this function returns an error, it is unspecified how many bytes it
73
73
/// has read, but it will never read more than would be necessary to
74
74
/// completely fill the buffer.
75
- #[ stable( feature = "rw_exact_all_at" , since = "1.33.0" ) ]
76
75
fn read_exact_at ( & self , mut buf : & mut [ u8 ] , mut offset : u64 ) -> io:: Result < ( ) > {
77
76
while !buf. is_empty ( ) {
78
77
match self . read_at ( buf, offset) {
@@ -144,7 +143,6 @@ pub trait FileExt {
144
143
/// non-[`io::ErrorKind::Interrupted`] kind that [`write_at`] returns.
145
144
///
146
145
/// [`write_at`]: FileExt::write_at
147
- #[ stable( feature = "rw_exact_all_at" , since = "1.33.0" ) ]
148
146
fn write_all_at ( & self , mut buf : & [ u8 ] , mut offset : u64 ) -> io:: Result < ( ) > {
149
147
while !buf. is_empty ( ) {
150
148
match self . write_at ( buf, offset) {
You can’t perform that action at this time.
0 commit comments