pub enum Bits {
Bit4(u8),
Bit8(u8),
}
Expand description
Bits
defines current command’s data width.
Most of the command should be 8 bit long, but fisrt command in DataWidth::Bit4
mode is special, it requires 4 bit data.
Variants§
Trait Implementations§
impl Copy for Bits
impl StructuralPartialEq for Bits
Auto Trait Implementations§
impl Freeze for Bits
impl RefUnwindSafe for Bits
impl Send for Bits
impl Sync for Bits
impl Unpin for Bits
impl UnwindSafe for Bits
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