Enum Tot
#[repr(u8)]pub enum Tot {
_00 = 0,
_01 = 1,
_10 = 2,
_11 = 3,
}Expand description
Type Of Transpose For Writes
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 Tot
impl Eq for Tot
impl IsEnum 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