pub enum KeyMode {
Normal = 0,
WrappedKey = 1,
SharedKey = 2,
}Expand description
Key mode for SAES
Variants§
Normal = 0
Normal software key mode
WrappedKey = 1
Wrapped key mode (encrypted key)
Shared key mode (key shared between peripherals)
Trait Implementations§
impl Copy for KeyMode
impl Eq for KeyMode
impl StructuralPartialEq for KeyMode
Auto Trait Implementations§
impl Freeze for KeyMode
impl RefUnwindSafe for KeyMode
impl Send for KeyMode
impl Sync for KeyMode
impl Unpin for KeyMode
impl UnwindSafe for KeyMode
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