#[repr(u8)]pub enum Width {
BIT_8 = 0,
BIT_16 = 1,
BIT_32 = 2,
_RESERVED_3 = 3,
}Variants§
BIT_8 = 0
8-bit. 8-bit transfers are performed (8-bit source reads and destination writes).
BIT_16 = 1
16-bit. 6-bit transfers are performed (16-bit source reads and destination writes).
BIT_32 = 2
32-bit. 32-bit transfers are performed (32-bit source reads and destination writes).
_RESERVED_3 = 3
Implementations§
Trait Implementations§
Source§impl Ord for Width
impl Ord for Width
Source§impl PartialOrd for Width
impl PartialOrd for Width
impl Copy for Width
impl Eq for Width
impl StructuralPartialEq for Width
Auto Trait Implementations§
impl Freeze for Width
impl RefUnwindSafe for Width
impl Send for Width
impl Sync for Width
impl Unpin for Width
impl UnwindSafe for Width
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