pub enum UtmiDataWidth {
Bit8,
Bit16,
Unknown(u8),
}Expand description
Describes the UTMI+ interface data width.
Variants§
Bit8
8-bit data width.
Bit16
16-bit data width.
Unknown(u8)
An unknown or unsupported value was read.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UtmiDataWidth
impl RefUnwindSafe for UtmiDataWidth
impl Send for UtmiDataWidth
impl Sync for UtmiDataWidth
impl Unpin for UtmiDataWidth
impl UnwindSafe for UtmiDataWidth
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