pub enum BootOrderTypes {
BootOrder,
AliasBootOrder,
UnsupportedValue,
}Expand description
The enumerations of BootOrderTypes specify the choice of boot order property to use when controller the persistent boot order for this computer system.
Variants§
BootOrder
The system uses the BootOrder property to specify the persistent boot order.
AliasBootOrder
The system uses the AliasBootOrder property to specify the persistent boot order.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for BootOrderTypes
impl Clone for BootOrderTypes
Source§fn clone(&self) -> BootOrderTypes
fn clone(&self) -> BootOrderTypes
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 BootOrderTypes
impl Debug for BootOrderTypes
Source§impl<'de> Deserialize<'de> for BootOrderTypes
impl<'de> Deserialize<'de> for BootOrderTypes
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 BootOrderTypes
impl PartialEq for BootOrderTypes
Source§impl Serialize for BootOrderTypes
impl Serialize for BootOrderTypes
Source§impl ToSnakeCase for BootOrderTypes
impl ToSnakeCase for BootOrderTypes
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 BootOrderTypes
impl Eq for BootOrderTypes
impl StructuralPartialEq for BootOrderTypes
Auto Trait Implementations§
impl Freeze for BootOrderTypes
impl RefUnwindSafe for BootOrderTypes
impl Send for BootOrderTypes
impl Sync for BootOrderTypes
impl Unpin for BootOrderTypes
impl UnsafeUnpin for BootOrderTypes
impl UnwindSafe for BootOrderTypes
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