nvme::ds::cmd::admin

Enum AdminCommand

source
#[repr(u8)]
pub enum AdminCommand {
Show 30 variants DeleteSubmissionQueue = 0, CreateSubmissionQueue = 1, GetLogPage = 2, DeleteCompletionQueue = 4, CreateCompletionQueue = 5, Identify = 6, Abort = 8, SetFeatures = 9, GetFeatures = 10, AsyncEventRequest = 12, NamespaceManagement = 13, FirmwareCommit = 16, FirmwareImageDownload = 17, DeviceSelfTest = 20, NamespaceAttachment = 21, KeepAlive = 24, DirectiveSend = 25, DirectiveReceive = 26, VirtualizationManagement = 28, NVMeMISend = 29, NVMeMIReceive = 30, CapacityManagement = 32, Lockdown = 36, DoorbellBufferConfig = 124, FabricsCommands = 127, FormatNVM = 128, SecuritySend = 129, SecurityReceive = 130, Sanitize = 132, GetLBAStatus = 134,
}

Variants§

§

DeleteSubmissionQueue = 0

§

CreateSubmissionQueue = 1

§

GetLogPage = 2

§

DeleteCompletionQueue = 4

§

CreateCompletionQueue = 5

§

Identify = 6

§

Abort = 8

§

SetFeatures = 9

§

GetFeatures = 10

§

AsyncEventRequest = 12

§

NamespaceManagement = 13

§

FirmwareCommit = 16

§

FirmwareImageDownload = 17

§

DeviceSelfTest = 20

§

NamespaceAttachment = 21

§

KeepAlive = 24

§

DirectiveSend = 25

§

DirectiveReceive = 26

§

VirtualizationManagement = 28

§

NVMeMISend = 29

§

NVMeMIReceive = 30

§

CapacityManagement = 32

§

Lockdown = 36

§

DoorbellBufferConfig = 124

§

FabricsCommands = 127

§

FormatNVM = 128

§

SecuritySend = 129

§

SecurityReceive = 130

§

Sanitize = 132

§

GetLBAStatus = 134

Trait Implementations§

source§

impl From<AdminCommand> for u8

source§

fn from(a: AdminCommand) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.