Enum AesKeyLd
#[repr(u8)]pub enum AesKeyLd {
B_0X0 = 0,
B_0X1 = 1,
}Variants§
B_0X0 = 0
AES core is waiting for 128 random bits from the entropy sources for generating its key.
B_0X1 = 1
AES key register has been loaded with a random key.
Implementations§
Trait Implementations§
§impl Ord for AesKeyLd
impl Ord for AesKeyLd
§impl PartialOrd for AesKeyLd
impl PartialOrd for AesKeyLd
impl Copy for AesKeyLd
impl Eq for AesKeyLd
impl StructuralPartialEq for AesKeyLd
Auto Trait Implementations§
impl Freeze for AesKeyLd
impl RefUnwindSafe for AesKeyLd
impl Send for AesKeyLd
impl Sync for AesKeyLd
impl Unpin for AesKeyLd
impl UnwindSafe for AesKeyLd
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