pub enum FeatureId {
Show 34 variants
Arbitration = 1,
PowerManagement = 2,
LBARangeType = 3,
TemperatureThreshold = 4,
ErrorRecovery = 5,
VolatileWriteCache = 6,
NumberOfQueues = 7,
InterruptCoalescing = 8,
InterruptVectorConfig = 9,
WriteAtomicityNormal = 10,
AsyncEventConfig = 11,
AutonomousPowerStateTransition = 12,
HostMemoryBuffer = 13,
Timestamp = 14,
KeepAliveTimer = 15,
HostControlledThermalManagement = 16,
NonOperationalPowerStateConfig = 17,
ReadRecoveryLevelConfig = 18,
PredictableLatencyModeConfig = 19,
PredictableLatencyModeWindow = 20,
LBAStatusInfoReportInterval = 21,
HostBehaviorSupport = 22,
SanitizeConfig = 23,
EnduranceGroupEventConfig = 24,
IOCommandSetProfile = 25,
SpinupControl = 26,
EnhancedControllerMetadata = 125,
ControllerMetadata = 126,
NamespaceMetadata = 127,
SoftwareProgressMarker = 128,
HostIdentifier = 129,
ReservationNotificationMask = 130,
ReservationPersistence = 131,
NamespaceWriteProtectionConfig = 132,
}Variants§
Arbitration = 1
PowerManagement = 2
LBARangeType = 3
TemperatureThreshold = 4
ErrorRecovery = 5
VolatileWriteCache = 6
NumberOfQueues = 7
InterruptCoalescing = 8
InterruptVectorConfig = 9
WriteAtomicityNormal = 10
AsyncEventConfig = 11
AutonomousPowerStateTransition = 12
HostMemoryBuffer = 13
Timestamp = 14
KeepAliveTimer = 15
HostControlledThermalManagement = 16
NonOperationalPowerStateConfig = 17
ReadRecoveryLevelConfig = 18
PredictableLatencyModeConfig = 19
PredictableLatencyModeWindow = 20
LBAStatusInfoReportInterval = 21
HostBehaviorSupport = 22
SanitizeConfig = 23
EnduranceGroupEventConfig = 24
IOCommandSetProfile = 25
SpinupControl = 26
EnhancedControllerMetadata = 125
ControllerMetadata = 126
NamespaceMetadata = 127
SoftwareProgressMarker = 128
HostIdentifier = 129
ReservationNotificationMask = 130
ReservationPersistence = 131
NamespaceWriteProtectionConfig = 132
Trait Implementations§
Source§impl Specifier for FeatureId
impl Specifier for FeatureId
Source§type Bytes = <BitCount<8> as SpecifierBytes>::Bytes
type Bytes = <BitCount<8> as SpecifierBytes>::Bytes
The storage type. This is typically the smallest integer primitive that
can store all possible values of the
InOut type.Source§type InOut = FeatureId
type InOut = FeatureId
The interface type. This type is used by getters and setters. For
integers, this is the same as the
Bytes type; for other
types with more logical representations, like an enum or struct, this is
the enum or struct.Source§fn into_bytes(
input: <Self as Specifier>::InOut,
) -> Result<<Self as Specifier>::Bytes, OutOfBounds>
fn into_bytes( input: <Self as Specifier>::InOut, ) -> Result<<Self as Specifier>::Bytes, OutOfBounds>
Converts an interface type into its storage type. Read more
Source§fn from_bytes(
bytes: <Self as Specifier>::Bytes,
) -> Result<<Self as Specifier>::InOut, InvalidBitPattern<<Self as Specifier>::Bytes>>
fn from_bytes( bytes: <Self as Specifier>::Bytes, ) -> Result<<Self as Specifier>::InOut, InvalidBitPattern<<Self as Specifier>::Bytes>>
Converts a storage type into its interface type. Read more
Auto Trait Implementations§
impl Freeze for FeatureId
impl RefUnwindSafe for FeatureId
impl Send for FeatureId
impl Sync for FeatureId
impl Unpin for FeatureId
impl UnwindSafe for FeatureId
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