We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7015dfd commit 73166f7Copy full SHA for 73166f7
src/libstd/sys/unix/ext/fs.rs
@@ -109,7 +109,7 @@ pub trait FileExt {
109
/// Ok(())
110
/// }
111
/// ```
112
- #[unstable(feature = "rw_exact_all_at", issue = "0")]
+ #[unstable(feature = "rw_exact_all_at", issue = "51984")]
113
fn read_exact_at(&self, mut buf: &mut [u8], mut offset: u64) -> io::Result<()> {
114
while !buf.is_empty() {
115
match self.read_at(buf, offset) {
@@ -204,7 +204,7 @@ pub trait FileExt {
204
205
206
207
208
fn write_all_at(&self, mut buf: &[u8], mut offset: u64) -> io::Result<()> {
209
210
match self.write_at(buf, offset) {
0 commit comments