pub enum SecureBootModeType {
SetupMode,
UserMode,
AuditMode,
DeployedMode,
UnsupportedValue,
}Variants§
SetupMode
UEFI Secure Boot is currently in Setup Mode.
UserMode
UEFI Secure Boot is currently in User Mode.
AuditMode
UEFI Secure Boot is currently in Audit Mode.
DeployedMode
UEFI Secure Boot is currently in Deployed Mode.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for SecureBootModeType
impl Clone for SecureBootModeType
Source§fn clone(&self) -> SecureBootModeType
fn clone(&self) -> SecureBootModeType
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 SecureBootModeType
impl Debug for SecureBootModeType
Source§impl<'de> Deserialize<'de> for SecureBootModeType
impl<'de> Deserialize<'de> for SecureBootModeType
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 SecureBootModeType
impl PartialEq for SecureBootModeType
Source§impl Serialize for SecureBootModeType
impl Serialize for SecureBootModeType
Source§impl ToSnakeCase for SecureBootModeType
impl ToSnakeCase for SecureBootModeType
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 SecureBootModeType
impl Eq for SecureBootModeType
impl StructuralPartialEq for SecureBootModeType
Auto Trait Implementations§
impl Freeze for SecureBootModeType
impl RefUnwindSafe for SecureBootModeType
impl Send for SecureBootModeType
impl Sync for SecureBootModeType
impl Unpin for SecureBootModeType
impl UnsafeUnpin for SecureBootModeType
impl UnwindSafe for SecureBootModeType
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