#[repr(u8)]pub enum BusWidth {
Bits1 = 0,
Bits4 = 2,
Bits8 = 3,
}
Expand description
Represents the variants of the bus width
field of the Argument.
Variants§
Bits1 = 0
Represents the selection of a 1-bit bus width.
Bits4 = 2
Represents the selection of a 4-bit bus width.
Bits8 = 3
Represents the selection of a 8-bit bus width.
Implementations§
Trait Implementations§
impl Copy for BusWidth
impl Eq for BusWidth
impl StructuralPartialEq for BusWidth
Auto Trait Implementations§
impl Freeze for BusWidth
impl RefUnwindSafe for BusWidth
impl Send for BusWidth
impl Sync for BusWidth
impl Unpin for BusWidth
impl UnwindSafe for BusWidth
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