pub struct NVMeControllerProperties {
pub ana_characteristics: Option<Vec<ANACharacteristics>>,
pub allocated_completion_queues: Option<i64>,
pub allocated_submission_queues: Option<i64>,
pub controller_type: Option<NVMeControllerType>,
pub max_queue_size: Option<i64>,
pub nv_me_controller_attributes: Option<NVMeControllerAttributes>,
pub nv_me_smart_critical_warnings: Option<NVMeSMARTCriticalWarnings>,
pub nv_me_version: Option<String>,
}
Expand description
NVMe related properties for a storage controller.
Fields§
§ana_characteristics: Option<Vec<ANACharacteristics>>
The ANA characteristics and volume information.
allocated_completion_queues: Option<i64>
The number of I/O completion queues allocated to this NVMe I/O controller.
allocated_submission_queues: Option<i64>
The number of I/O submission queues allocated to this NVMe I/O controller.
controller_type: Option<NVMeControllerType>
§max_queue_size: Option<i64>
The maximum individual queue size that an NVMe IO controller supports.
nv_me_controller_attributes: Option<NVMeControllerAttributes>
§nv_me_smart_critical_warnings: Option<NVMeSMARTCriticalWarnings>
§nv_me_version: Option<String>
The version of the NVMe Base Specification supported.
Trait Implementations§
source§impl Clone for NVMeControllerProperties
impl Clone for NVMeControllerProperties
source§fn clone(&self) -> NVMeControllerProperties
fn clone(&self) -> NVMeControllerProperties
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 NVMeControllerProperties
impl Debug for NVMeControllerProperties
source§impl Default for NVMeControllerProperties
impl Default for NVMeControllerProperties
source§fn default() -> NVMeControllerProperties
fn default() -> NVMeControllerProperties
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for NVMeControllerProperties
impl<'de> Deserialize<'de> for NVMeControllerProperties
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more