#[repr(u8)]pub enum Tot {
NOTRNPS = 0,
BTS_TRNPS = 1,
BYTS_BTS_TRNPS = 2,
BYTS_TRNPS = 3,
}Variants§
NOTRNPS = 0
No transposition
BTS_TRNPS = 1
Bits in bytes are transposed, but bytes are not transposed.
BYTS_BTS_TRNPS = 2
Both bits in bytes and bytes are transposed.
BYTS_TRNPS = 3
Only bytes are transposed, no bits in a byte are transposed.
Implementations§
Trait Implementations§
Source§impl Ord for Tot
impl Ord for Tot
Source§impl PartialOrd for Tot
impl PartialOrd for Tot
impl Copy for Tot
impl Eq for Tot
impl StructuralPartialEq for Tot
Auto Trait Implementations§
impl Freeze for Tot
impl RefUnwindSafe for Tot
impl Send for Tot
impl Sync for Tot
impl Unpin for Tot
impl UnwindSafe for Tot
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