#[repr(u8)]pub enum CtrlLcdDatabusWidth {
_16_BIT = 0,
_8_BIT = 1,
_18_BIT = 2,
_24_BIT = 3,
}Variants§
_16_BIT = 0
16-bit data bus mode.
_8_BIT = 1
8-bit data bus mode.
_18_BIT = 2
18-bit data bus mode.
_24_BIT = 3
24-bit data bus mode.
Implementations§
Trait Implementations§
Source§impl Clone for CtrlLcdDatabusWidth
impl Clone for CtrlLcdDatabusWidth
Source§fn clone(&self) -> CtrlLcdDatabusWidth
fn clone(&self) -> CtrlLcdDatabusWidth
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CtrlLcdDatabusWidth
impl Debug for CtrlLcdDatabusWidth
Source§impl From<CtrlLcdDatabusWidth> for u8
impl From<CtrlLcdDatabusWidth> for u8
Source§fn from(val: CtrlLcdDatabusWidth) -> u8
fn from(val: CtrlLcdDatabusWidth) -> u8
Converts to this type from the input type.
Source§impl From<u8> for CtrlLcdDatabusWidth
impl From<u8> for CtrlLcdDatabusWidth
Source§fn from(val: u8) -> CtrlLcdDatabusWidth
fn from(val: u8) -> CtrlLcdDatabusWidth
Converts to this type from the input type.
Source§impl Ord for CtrlLcdDatabusWidth
impl Ord for CtrlLcdDatabusWidth
Source§fn cmp(&self, other: &CtrlLcdDatabusWidth) -> Ordering
fn cmp(&self, other: &CtrlLcdDatabusWidth) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CtrlLcdDatabusWidth
impl PartialEq for CtrlLcdDatabusWidth
Source§impl PartialOrd for CtrlLcdDatabusWidth
impl PartialOrd for CtrlLcdDatabusWidth
impl Copy for CtrlLcdDatabusWidth
impl Eq for CtrlLcdDatabusWidth
impl StructuralPartialEq for CtrlLcdDatabusWidth
Auto Trait Implementations§
impl Freeze for CtrlLcdDatabusWidth
impl RefUnwindSafe for CtrlLcdDatabusWidth
impl Send for CtrlLcdDatabusWidth
impl Sync for CtrlLcdDatabusWidth
impl Unpin for CtrlLcdDatabusWidth
impl UnwindSafe for CtrlLcdDatabusWidth
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