pub struct SecureBootResetKeysAction {
pub reset_keys_type: Option<ResetKeysType>,
}Expand description
This action resets the UEFI Secure Boot keys.
This action shall reset the UEFI Secure Boot key databases. The ResetAllKeysToDefault value
shall reset all UEFI Secure Boot key databases to their default values. The DeleteAllKeys value
shall delete the contents of all UEFI Secure Boot key databases. The DeletePK value shall delete
the contents of the PK Secure Boot key database.
Fields§
§reset_keys_type: Option<ResetKeysType>The type of reset or delete to perform on the UEFI Secure Boot databases.
This parameter shall specify the type of reset or delete to perform on the UEFI Secure Boot databases.
Trait Implementations§
Source§impl Debug for SecureBootResetKeysAction
impl Debug for SecureBootResetKeysAction
Auto Trait Implementations§
impl Freeze for SecureBootResetKeysAction
impl RefUnwindSafe for SecureBootResetKeysAction
impl Send for SecureBootResetKeysAction
impl Sync for SecureBootResetKeysAction
impl Unpin for SecureBootResetKeysAction
impl UnsafeUnpin for SecureBootResetKeysAction
impl UnwindSafe for SecureBootResetKeysAction
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