pub struct IoSlice<T>where
T: Seek,{ /* private fields */ }
Expand description
A slice, subset, or view into some object.
IoSlice
impls both std::io::Read
and std::io::Write
when the source implements them (and only one if the source
only implements one).
§example usage.
use { std::fs::File, slice::IoSlice };
let source = File::open("/home/annie/data.png")?;
let start = 10;
let length = 1000;
// create a slice into `home/annie/data.png`, consisting of bytes [10 .. 10 + 1000]
// of that file.
//
// `slice` impls both `std::io::Read` and `std::io::Write` because `source`
// does too.
let slice = IoSlice::new(source, start, length);
// use like any other `std::io::Read` or `std::io::Write`:
//
// slice.read_to_string(...)?;
// slice.read_exact(...)?;
// slice.write_all(...)?;
//
// writeln!(slice, "hello {}", name)?;
//
Implementations§
Trait Implementations§
Source§impl<T> Read for IoSlice<T>
impl<T> Read for IoSlice<T>
Source§fn read(&mut self, buffer: &mut [u8]) -> Result<usize, Error>
fn read(&mut self, buffer: &mut [u8]) -> Result<usize, Error>
Pull some bytes from this source into the specified buffer, returning
how many bytes were read. Read more
Source§fn read_to_end(&mut self, buffer: &mut Vec<u8>) -> Result<usize, Error>
fn read_to_end(&mut self, buffer: &mut Vec<u8>) -> Result<usize, Error>
Reads all bytes until EOF in this source, placing them into
buf
. Read more1.36.0 · Source§fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
Like
read
, except that it reads into a slice of buffers. Read moreSource§fn is_read_vectored(&self) -> bool
fn is_read_vectored(&self) -> bool
🔬This is a nightly-only experimental API. (
can_vector
)1.0.0 · Source§fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
Reads all bytes until EOF in this source, appending them to
buf
. Read more1.6.0 · Source§fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
Reads the exact number of bytes required to fill
buf
. Read moreSource§fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
read_buf
)Pull some bytes from this source into the specified buffer. Read more
Source§fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
read_buf
)Reads the exact number of bytes required to fill
cursor
. Read more1.0.0 · Source§fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
Creates a “by reference” adaptor for this instance of
Read
. Read moreSource§impl<T> Seek for IoSlice<T>where
T: Seek,
impl<T> Seek for IoSlice<T>where
T: Seek,
Source§fn seek(&mut self, position: SeekFrom) -> Result<u64, Error>
fn seek(&mut self, position: SeekFrom) -> Result<u64, Error>
Seek to an offset, in bytes, in a stream. Read more
1.55.0 · Source§fn rewind(&mut self) -> Result<(), Error>
fn rewind(&mut self) -> Result<(), Error>
Rewind to the beginning of a stream. Read more
Source§fn stream_len(&mut self) -> Result<u64, Error>
fn stream_len(&mut self) -> Result<u64, Error>
🔬This is a nightly-only experimental API. (
seek_stream_len
)Returns the length of this stream (in bytes). Read more
Source§impl<T> Write for IoSlice<T>
impl<T> Write for IoSlice<T>
Source§fn write(&mut self, buffer: &[u8]) -> Result<usize, Error>
fn write(&mut self, buffer: &[u8]) -> Result<usize, Error>
Writes a buffer into this writer, returning how many bytes were written. Read more
Source§fn write_all(&mut self, buffer: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buffer: &[u8]) -> Result<(), Error>
Attempts to write an entire buffer into this writer. Read more
Source§fn flush(&mut self) -> Result<(), Error>
fn flush(&mut self) -> Result<(), Error>
Flushes this output stream, ensuring that all intermediately buffered
contents reach their destination. Read more
Source§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
🔬This is a nightly-only experimental API. (
can_vector
)Source§fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
write_all_vectored
)Attempts to write multiple buffers into this writer. Read more
Auto Trait Implementations§
impl<T> Freeze for IoSlice<T>where
T: Freeze,
impl<T> RefUnwindSafe for IoSlice<T>where
T: RefUnwindSafe,
impl<T> Send for IoSlice<T>where
T: Send,
impl<T> Sync for IoSlice<T>where
T: Sync,
impl<T> Unpin for IoSlice<T>where
T: Unpin,
impl<T> UnwindSafe for IoSlice<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more