pub struct UserSliceWriter { /* private fields */ }
Expand description
A writer for UserSlice
.
Used to incrementally write into the user slice.
Implementations§
Source§impl UserSliceWriter
impl UserSliceWriter
Sourcepub fn len(&self) -> usize
pub fn len(&self) -> usize
Returns the amount of space remaining in this buffer.
Note that even writing less than this number of bytes may fail.
Sourcepub fn write_slice(&mut self, data: &[u8]) -> Result
pub fn write_slice(&mut self, data: &[u8]) -> Result
Writes raw data to this user pointer from a kernel buffer.
Fails with EFAULT
if the write happens on a bad address, or if the write goes out of
bounds of this UserSliceWriter
. This call may modify the associated userspace slice even
if it returns an error.
Sourcepub fn write<T: AsBytes>(&mut self, value: &T) -> Result
pub fn write<T: AsBytes>(&mut self, value: &T) -> Result
Writes the provided Rust value to this userspace pointer.
Fails with EFAULT
if the write happens on a bad address, or if the write goes out of
bounds of this UserSliceWriter
. This call may modify the associated userspace slice even
if it returns an error.
Auto Trait Implementations§
impl Freeze for UserSliceWriter
impl RefUnwindSafe for UserSliceWriter
impl Send for UserSliceWriter
impl Sync for UserSliceWriter
impl Unpin for UserSliceWriter
impl UnwindSafe for UserSliceWriter
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