#[repr(u8)]pub enum CtrlClrDataFormat18Bit {
LOWER_18_BITS_VALID = 0,
UPPER_18_BITS_VALID = 1,
}Variants§
LOWER_18_BITS_VALID = 0
Data input to the block is in 18 bpp format, such that lower 18 bits contain RGB 666 and upper 14 bits do not contain any useful data.
UPPER_18_BITS_VALID = 1
Data input to the block is in 18 bpp format, such that upper 18 bits contain RGB 666 and lower 14 bits do not contain any useful data.
Implementations§
Trait Implementations§
Source§impl Clone for CtrlClrDataFormat18Bit
impl Clone for CtrlClrDataFormat18Bit
Source§fn clone(&self) -> CtrlClrDataFormat18Bit
fn clone(&self) -> CtrlClrDataFormat18Bit
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 CtrlClrDataFormat18Bit
impl Debug for CtrlClrDataFormat18Bit
Source§impl From<CtrlClrDataFormat18Bit> for u8
impl From<CtrlClrDataFormat18Bit> for u8
Source§fn from(val: CtrlClrDataFormat18Bit) -> u8
fn from(val: CtrlClrDataFormat18Bit) -> u8
Converts to this type from the input type.
Source§impl From<u8> for CtrlClrDataFormat18Bit
impl From<u8> for CtrlClrDataFormat18Bit
Source§fn from(val: u8) -> CtrlClrDataFormat18Bit
fn from(val: u8) -> CtrlClrDataFormat18Bit
Converts to this type from the input type.
Source§impl Ord for CtrlClrDataFormat18Bit
impl Ord for CtrlClrDataFormat18Bit
Source§fn cmp(&self, other: &CtrlClrDataFormat18Bit) -> Ordering
fn cmp(&self, other: &CtrlClrDataFormat18Bit) -> 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 CtrlClrDataFormat18Bit
impl PartialEq for CtrlClrDataFormat18Bit
Source§impl PartialOrd for CtrlClrDataFormat18Bit
impl PartialOrd for CtrlClrDataFormat18Bit
impl Copy for CtrlClrDataFormat18Bit
impl Eq for CtrlClrDataFormat18Bit
impl StructuralPartialEq for CtrlClrDataFormat18Bit
Auto Trait Implementations§
impl Freeze for CtrlClrDataFormat18Bit
impl RefUnwindSafe for CtrlClrDataFormat18Bit
impl Send for CtrlClrDataFormat18Bit
impl Sync for CtrlClrDataFormat18Bit
impl Unpin for CtrlClrDataFormat18Bit
impl UnwindSafe for CtrlClrDataFormat18Bit
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