pub enum NvmCommand {
GetSize,
Read {
offset: usize,
},
Write {
offset: usize,
},
}
Expand description
The operation the process requested.
Variants§
Trait Implementations§
Source§impl Clone for NvmCommand
impl Clone for NvmCommand
Source§fn clone(&self) -> NvmCommand
fn clone(&self) -> NvmCommand
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for NvmCommand
impl Debug for NvmCommand
impl Copy for NvmCommand
Auto Trait Implementations§
impl Freeze for NvmCommand
impl RefUnwindSafe for NvmCommand
impl Send for NvmCommand
impl Sync for NvmCommand
impl Unpin for NvmCommand
impl UnwindSafe for NvmCommand
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