pub enum VmIoMethod {
ReaderLimit(usize),
ReaderSkip(usize),
WriterFillZeros(usize),
WriterLimit(usize),
WriterSkip(usize),
}Expand description
Dispatch tag for [vm_io_method_step] (single-owner mutator methods).
Variants§
Implementations§
Source§impl VmIoMethod
impl VmIoMethod
pub fn arrow_0(self) -> usize
pub fn arrow_ReaderLimit_0(self) -> usize
pub fn arrow_ReaderSkip_0(self) -> usize
pub fn arrow_WriterFillZeros_0(self) -> usize
pub fn arrow_WriterLimit_0(self) -> usize
pub fn arrow_WriterSkip_0(self) -> usize
Auto Trait Implementations§
impl Freeze for VmIoMethod
impl RefUnwindSafe for VmIoMethod
impl Send for VmIoMethod
impl Sync for VmIoMethod
impl Unpin for VmIoMethod
impl UnsafeUnpin for VmIoMethod
impl UnwindSafe for VmIoMethod
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