#[repr(u8)]pub enum Totr {
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 Totr
impl Ord for Totr
Source§impl PartialOrd for Totr
impl PartialOrd for Totr
impl Copy for Totr
impl Eq for Totr
impl StructuralPartialEq for Totr
Auto Trait Implementations§
impl Freeze for Totr
impl RefUnwindSafe for Totr
impl Send for Totr
impl Sync for Totr
impl Unpin for Totr
impl UnwindSafe for Totr
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