pub enum AnaAccessState {
Optimized,
NonOptimized,
Inaccessible,
PersistentLoss,
UnsupportedValue,
}Variants§
Optimized
Commands processed by a controller provide optimized access to any namespace in the ANA group.
NonOptimized
Commands processed by a controller that reports this state for an ANA group provide non-optimized access characteristics, such as lower performance or non-optimal use of subsystem resources, to any namespace in the ANA group.
Inaccessible
Namespaces in this group are inaccessible. Commands are not able to access user data of namespaces in the ANA group.
PersistentLoss
The group is persistently inaccessible. Commands are persistently not able to access user data of namespaces in the ANA group.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for AnaAccessState
impl Clone for AnaAccessState
Source§fn clone(&self) -> AnaAccessState
fn clone(&self) -> AnaAccessState
Returns a duplicate 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 AnaAccessState
impl Debug for AnaAccessState
Source§impl<'de> Deserialize<'de> for AnaAccessState
impl<'de> Deserialize<'de> for AnaAccessState
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
Source§impl PartialEq for AnaAccessState
impl PartialEq for AnaAccessState
Source§impl Serialize for AnaAccessState
impl Serialize for AnaAccessState
Source§impl ToSnakeCase for AnaAccessState
impl ToSnakeCase for AnaAccessState
Source§fn to_snake_case(&self) -> &'static str
fn to_snake_case(&self) -> &'static str
Convert this enum variant to a
snake_case stringimpl Copy for AnaAccessState
impl Eq for AnaAccessState
impl StructuralPartialEq for AnaAccessState
Auto Trait Implementations§
impl Freeze for AnaAccessState
impl RefUnwindSafe for AnaAccessState
impl Send for AnaAccessState
impl Sync for AnaAccessState
impl Unpin for AnaAccessState
impl UnsafeUnpin for AnaAccessState
impl UnwindSafe for AnaAccessState
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