#[repr(u8)]pub enum IncrMode {
INCR_MODE_32 = 0,
INCR_MODE_64 = 1,
INCR_MODE_96 = 2,
INCR_MODE_128 = 3,
}Variants§
INCR_MODE_32 = 0
2**32 increment mode
INCR_MODE_64 = 1
2**64 increment mode
INCR_MODE_96 = 2
2**96 increment mode
INCR_MODE_128 = 3
2**128 increment mode
Implementations§
Trait Implementations§
Source§impl Ord for IncrMode
impl Ord for IncrMode
Source§impl PartialOrd for IncrMode
impl PartialOrd for IncrMode
impl Copy for IncrMode
impl Eq for IncrMode
impl StructuralPartialEq for IncrMode
Auto Trait Implementations§
impl Freeze for IncrMode
impl RefUnwindSafe for IncrMode
impl Send for IncrMode
impl Sync for IncrMode
impl Unpin for IncrMode
impl UnwindSafe for IncrMode
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