pub enum BaseSpeedPriorityState {
Enabled,
Disabled,
UnsupportedValue,
}Variants§
Enabled
Base speed priority is enabled.
Disabled
Base speed priority is disabled.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for BaseSpeedPriorityState
impl Clone for BaseSpeedPriorityState
Source§fn clone(&self) -> BaseSpeedPriorityState
fn clone(&self) -> BaseSpeedPriorityState
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 BaseSpeedPriorityState
impl Debug for BaseSpeedPriorityState
Source§impl<'de> Deserialize<'de> for BaseSpeedPriorityState
impl<'de> Deserialize<'de> for BaseSpeedPriorityState
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 BaseSpeedPriorityState
impl PartialEq for BaseSpeedPriorityState
Source§impl Serialize for BaseSpeedPriorityState
impl Serialize for BaseSpeedPriorityState
Source§impl ToSnakeCase for BaseSpeedPriorityState
impl ToSnakeCase for BaseSpeedPriorityState
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 BaseSpeedPriorityState
impl Eq for BaseSpeedPriorityState
impl StructuralPartialEq for BaseSpeedPriorityState
Auto Trait Implementations§
impl Freeze for BaseSpeedPriorityState
impl RefUnwindSafe for BaseSpeedPriorityState
impl Send for BaseSpeedPriorityState
impl Sync for BaseSpeedPriorityState
impl Unpin for BaseSpeedPriorityState
impl UnsafeUnpin for BaseSpeedPriorityState
impl UnwindSafe for BaseSpeedPriorityState
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