Struct redfish_codegen::models::volume::v1_8_0::NVMeNamespaceProperties
source · pub struct NVMeNamespaceProperties {
pub formatted_lba_size: Option<String>,
pub is_shareable: Option<bool>,
pub lba_formats_supported: Option<Vec<LBAFormatType>>,
pub metadata_transferred_at_end_of_data_lba: Option<bool>,
pub nv_me_version: Option<String>,
pub namespace_features: Option<NamespaceFeatures>,
pub namespace_id: Option<String>,
pub number_lba_formats: Option<i64>,
}
Expand description
This contains properties to use when Volume is used to describe an NVMe Namespace.
Fields§
§formatted_lba_size: Option<String>
The LBA data size and metadata size combination that the namespace has been formatted with.
Indicates the namespace is shareable.
lba_formats_supported: Option<Vec<LBAFormatType>>
A list of the LBA format types supported for the namespace, or potential namespaces.
metadata_transferred_at_end_of_data_lba: Option<bool>
This property indicates whether or not the metadata is transferred at the end of the LBA creating an extended data LBA.
nv_me_version: Option<String>
The version of the NVMe Base Specification supported.
namespace_features: Option<NamespaceFeatures>
§namespace_id: Option<String>
The NVMe Namespace Identifier for this namespace.
number_lba_formats: Option<i64>
The number of LBA data size and metadata size combinations supported by this namespace. The value of this property is between 0 and 16.
Trait Implementations§
source§impl Clone for NVMeNamespaceProperties
impl Clone for NVMeNamespaceProperties
source§fn clone(&self) -> NVMeNamespaceProperties
fn clone(&self) -> NVMeNamespaceProperties
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 NVMeNamespaceProperties
impl Debug for NVMeNamespaceProperties
source§impl Default for NVMeNamespaceProperties
impl Default for NVMeNamespaceProperties
source§fn default() -> NVMeNamespaceProperties
fn default() -> NVMeNamespaceProperties
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for NVMeNamespaceProperties
impl<'de> Deserialize<'de> for NVMeNamespaceProperties
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