Enum Totr
#[repr(u8)]pub enum Totr {
_00 = 0,
_01 = 1,
_10 = 2,
_11 = 3,
}Expand description
Type Of Transpose For Read
Value on reset: 0
Variants§
_00 = 0
0: No transposition.
_01 = 1
1: Bits in bytes are transposed; bytes are not transposed.
_10 = 2
2: Both bits in bytes and bytes are transposed.
_11 = 3
3: Only bytes are transposed; no bits in a byte are transposed.
Trait Implementations§
impl Copy for Totr
impl Eq for Totr
impl IsEnum 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