pub enum LbaRelativePerformanceType {
Best,
Better,
Good,
Degraded,
UnsupportedValue,
}Expand description
Indicate the relative performance of the LBA format relative to other LBA formats supported by the controller.
Variants§
Best
Best performance.
Better
Better performance.
Good
Good performance.
Degraded
Degraded performance.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for LbaRelativePerformanceType
impl Clone for LbaRelativePerformanceType
Source§fn clone(&self) -> LbaRelativePerformanceType
fn clone(&self) -> LbaRelativePerformanceType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LbaRelativePerformanceType
Source§impl Debug for LbaRelativePerformanceType
impl Debug for LbaRelativePerformanceType
Source§impl<'de> Deserialize<'de> for LbaRelativePerformanceType
impl<'de> Deserialize<'de> for LbaRelativePerformanceType
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
impl Eq for LbaRelativePerformanceType
Source§impl PartialEq for LbaRelativePerformanceType
impl PartialEq for LbaRelativePerformanceType
Source§fn eq(&self, other: &LbaRelativePerformanceType) -> bool
fn eq(&self, other: &LbaRelativePerformanceType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LbaRelativePerformanceType
Source§impl ToSnakeCase for LbaRelativePerformanceType
impl ToSnakeCase for LbaRelativePerformanceType
Source§fn to_snake_case(&self) -> &'static str
fn to_snake_case(&self) -> &'static str
Convert this enum variant to a
snake_case stringAuto Trait Implementations§
impl Freeze for LbaRelativePerformanceType
impl RefUnwindSafe for LbaRelativePerformanceType
impl Send for LbaRelativePerformanceType
impl Sync for LbaRelativePerformanceType
impl Unpin for LbaRelativePerformanceType
impl UnsafeUnpin for LbaRelativePerformanceType
impl UnwindSafe for LbaRelativePerformanceType
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