diff options
| author | Paolo Barbolini <paolo.barbolini@m4ss.net> | 2025-05-10 23:46:43 +0000 |
|---|---|---|
| committer | Paolo Barbolini <paolo.barbolini@m4ss.net> | 2025-05-10 23:55:51 +0000 |
| commit | aeea4727a4a00030fa888eccb10bcc372c4b7d2d (patch) | |
| tree | 173d6865ae1682f54ff61cfa11aa38f58a0a945a | |
| parent | dbab4e152bd9eed57ccfc096ef6060dd9af45a99 (diff) | |
| download | rust-aeea4727a4a00030fa888eccb10bcc372c4b7d2d.tar.gz rust-aeea4727a4a00030fa888eccb10bcc372c4b7d2d.zip | |
Remove `stable` attribute from wasi fs (read_exact|write_all)_at
| -rw-r--r-- | library/std/src/os/wasi/fs.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/library/std/src/os/wasi/fs.rs b/library/std/src/os/wasi/fs.rs index 34f0e89f2f1..5ea91dd6521 100644 --- a/library/std/src/os/wasi/fs.rs +++ b/library/std/src/os/wasi/fs.rs @@ -72,7 +72,6 @@ pub trait FileExt { /// If this function returns an error, it is unspecified how many bytes it /// has read, but it will never read more than would be necessary to /// completely fill the buffer. - #[stable(feature = "rw_exact_all_at", since = "1.33.0")] fn read_exact_at(&self, mut buf: &mut [u8], mut offset: u64) -> io::Result<()> { while !buf.is_empty() { match self.read_at(buf, offset) { @@ -144,7 +143,6 @@ pub trait FileExt { /// non-[`io::ErrorKind::Interrupted`] kind that [`write_at`] returns. /// /// [`write_at`]: FileExt::write_at - #[stable(feature = "rw_exact_all_at", since = "1.33.0")] fn write_all_at(&self, mut buf: &[u8], mut offset: u64) -> io::Result<()> { while !buf.is_empty() { match self.write_at(buf, offset) { |
