pub enum StatusCodeType {
Generic,
CommandSpecific,
MediaError,
PathError,
VendorSpecific,
}
Expand description
NVMe status code type.
Variants§
Generic
Generic command status
CommandSpecific
Command specific status
MediaError
Media and data integrity errors
PathError
Path related errors
VendorSpecific
Vendor specific
Trait Implementations§
Source§impl Clone for StatusCodeType
impl Clone for StatusCodeType
Source§fn clone(&self) -> StatusCodeType
fn clone(&self) -> StatusCodeType
Returns a duplicate 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 StatusCodeType
impl Debug for StatusCodeType
Source§impl PartialEq for StatusCodeType
impl PartialEq for StatusCodeType
impl Copy for StatusCodeType
impl Eq for StatusCodeType
impl StructuralPartialEq for StatusCodeType
Auto Trait Implementations§
impl Freeze for StatusCodeType
impl RefUnwindSafe for StatusCodeType
impl Send for StatusCodeType
impl Sync for StatusCodeType
impl Unpin for StatusCodeType
impl UnwindSafe for StatusCodeType
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