pub enum ResetKeysType {
ResetAllKeysToDefault,
DeleteAllKeys,
DeletePk,
UnsupportedValue,
}Variants§
ResetAllKeysToDefault
Reset the contents of all UEFI Secure Boot key databases, including the PK key database, to the default values.
DeleteAllKeys
Delete the contents of all UEFI Secure Boot key databases, including the PK key database. This puts the system in Setup Mode.
DeletePk
Delete the contents of the PK UEFI Secure Boot database. This puts the system in Setup Mode.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for ResetKeysType
impl Clone for ResetKeysType
Source§fn clone(&self) -> ResetKeysType
fn clone(&self) -> ResetKeysType
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 ResetKeysType
impl Debug for ResetKeysType
Source§impl<'de> Deserialize<'de> for ResetKeysType
impl<'de> Deserialize<'de> for ResetKeysType
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 ResetKeysType
impl PartialEq for ResetKeysType
Source§impl Serialize for ResetKeysType
impl Serialize for ResetKeysType
Source§impl ToSnakeCase for ResetKeysType
impl ToSnakeCase for ResetKeysType
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 ResetKeysType
impl Eq for ResetKeysType
impl StructuralPartialEq for ResetKeysType
Auto Trait Implementations§
impl Freeze for ResetKeysType
impl RefUnwindSafe for ResetKeysType
impl Send for ResetKeysType
impl Sync for ResetKeysType
impl Unpin for ResetKeysType
impl UnsafeUnpin for ResetKeysType
impl UnwindSafe for ResetKeysType
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