Enum AesInit
#[repr(u8)]pub enum AesInit {
B_0X0 = 0,
B_0X1 = 1,
}Variants§
B_0X0 = 0
AES core is not initialized (no key or state set).
B_0X1 = 1
AES core is fully initialized.
Implementations§
Trait Implementations§
§impl Ord for AesInit
impl Ord for AesInit
§impl PartialOrd for AesInit
impl PartialOrd for AesInit
impl Copy for AesInit
impl Eq for AesInit
impl StructuralPartialEq for AesInit
Auto Trait Implementations§
impl Freeze for AesInit
impl RefUnwindSafe for AesInit
impl Send for AesInit
impl Sync for AesInit
impl Unpin for AesInit
impl UnwindSafe for AesInit
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