#[repr(u8)]pub enum Icbsz {
BITS_32 = 0,
BITS_64 = 1,
BITS_96 = 2,
BIT_128 = 3,
}Variants§
BITS_32 = 0
32 bits of the IV/ctr are used (from 127:96)
BITS_64 = 1
64 bits of the IV/ctr are used (from 127:64)
BITS_96 = 2
96 bits of the IV/ctr are used (from 127:32)
BIT_128 = 3
All 128 bits of the IV/ctr are used
Implementations§
Trait Implementations§
Source§impl Ord for Icbsz
impl Ord for Icbsz
Source§impl PartialOrd for Icbsz
impl PartialOrd for Icbsz
impl Copy for Icbsz
impl Eq for Icbsz
impl StructuralPartialEq for Icbsz
Auto Trait Implementations§
impl Freeze for Icbsz
impl RefUnwindSafe for Icbsz
impl Send for Icbsz
impl Sync for Icbsz
impl Unpin for Icbsz
impl UnwindSafe for Icbsz
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