pub struct UserSliceReader { /* private fields */ }
Expand description
A reader for UserSlice
.
Used to incrementally read from the user slice.
Implementations§
Source§impl UserSliceReader
impl UserSliceReader
Sourcepub fn skip(&mut self, num_skip: usize) -> Result
pub fn skip(&mut self, num_skip: usize) -> Result
Skip the provided number of bytes.
Returns an error if skipping more than the length of the buffer.
Sourcepub fn clone_reader(&self) -> UserSliceReader
pub fn clone_reader(&self) -> UserSliceReader
Create a reader that can access the same range of data.
Reading from the clone does not advance the current reader.
The caller should take care to not introduce TOCTOU issues, as described in the
documentation for UserSlice
.
Sourcepub fn len(&self) -> usize
pub fn len(&self) -> usize
Returns the number of bytes left to be read from this reader.
Note that even reading less than this number of bytes may fail.
Sourcepub fn read_raw(&mut self, out: &mut [MaybeUninit<u8>]) -> Result
pub fn read_raw(&mut self, out: &mut [MaybeUninit<u8>]) -> Result
Reads raw data from the user slice into a kernel buffer.
For a version that uses &mut [u8]
, please see UserSliceReader::read_slice
.
Fails with EFAULT
if the read happens on a bad address, or if the read goes out of
bounds of this UserSliceReader
. This call may modify out
even if it returns an error.
§Guarantees
After a successful call to this method, all bytes in out
are initialized.
Sourcepub fn read_slice(&mut self, out: &mut [u8]) -> Result
pub fn read_slice(&mut self, out: &mut [u8]) -> Result
Reads raw data from the user slice into a kernel buffer.
Fails with EFAULT
if the read happens on a bad address, or if the read goes out of
bounds of this UserSliceReader
. This call may modify out
even if it returns an error.