pub enum DeriveKeyConfig {
Roll(bool),
Create(bool),
Invalid,
}Variants§
Roll(bool)
DeriveKey command can be run with/without authorizing MAC. Source Key: Target
Create(bool)
DeriveKey command can be run with/without authorizing MAC. Source Key: Parent
Invalid
Slots with this write configutation can not be used as the target of a DeriveKey.
Trait Implementations§
Source§impl Debug for DeriveKeyConfig
impl Debug for DeriveKeyConfig
Source§impl From<DeriveKeyConfig> for u8
impl From<DeriveKeyConfig> for u8
Source§fn from(v: DeriveKeyConfig) -> Self
fn from(v: DeriveKeyConfig) -> Self
Converts to this type from the input type.
Source§impl From<u8> for DeriveKeyConfig
impl From<u8> for DeriveKeyConfig
Source§impl PartialEq for DeriveKeyConfig
impl PartialEq for DeriveKeyConfig
Source§impl Serialize for DeriveKeyConfig
impl Serialize for DeriveKeyConfig
impl Eq for DeriveKeyConfig
impl StructuralPartialEq for DeriveKeyConfig
Auto Trait Implementations§
impl Freeze for DeriveKeyConfig
impl RefUnwindSafe for DeriveKeyConfig
impl Send for DeriveKeyConfig
impl Sync for DeriveKeyConfig
impl Unpin for DeriveKeyConfig
impl UnwindSafe for DeriveKeyConfig
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