#[repr(u8)]pub enum CtrlTogDataFormat18Bit {
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 CtrlTogDataFormat18Bit
impl Clone for CtrlTogDataFormat18Bit
Source§fn clone(&self) -> CtrlTogDataFormat18Bit
fn clone(&self) -> CtrlTogDataFormat18Bit
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 CtrlTogDataFormat18Bit
impl Debug for CtrlTogDataFormat18Bit
Source§impl From<CtrlTogDataFormat18Bit> for u8
impl From<CtrlTogDataFormat18Bit> for u8
Source§fn from(val: CtrlTogDataFormat18Bit) -> u8
fn from(val: CtrlTogDataFormat18Bit) -> u8
Converts to this type from the input type.
Source§impl From<u8> for CtrlTogDataFormat18Bit
impl From<u8> for CtrlTogDataFormat18Bit
Source§fn from(val: u8) -> CtrlTogDataFormat18Bit
fn from(val: u8) -> CtrlTogDataFormat18Bit
Converts to this type from the input type.
Source§impl Ord for CtrlTogDataFormat18Bit
impl Ord for CtrlTogDataFormat18Bit
Source§fn cmp(&self, other: &CtrlTogDataFormat18Bit) -> Ordering
fn cmp(&self, other: &CtrlTogDataFormat18Bit) -> 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 CtrlTogDataFormat18Bit
impl PartialEq for CtrlTogDataFormat18Bit
Source§impl PartialOrd for CtrlTogDataFormat18Bit
impl PartialOrd for CtrlTogDataFormat18Bit
impl Copy for CtrlTogDataFormat18Bit
impl Eq for CtrlTogDataFormat18Bit
impl StructuralPartialEq for CtrlTogDataFormat18Bit
Auto Trait Implementations§
impl Freeze for CtrlTogDataFormat18Bit
impl RefUnwindSafe for CtrlTogDataFormat18Bit
impl Send for CtrlTogDataFormat18Bit
impl Sync for CtrlTogDataFormat18Bit
impl Unpin for CtrlTogDataFormat18Bit
impl UnwindSafe for CtrlTogDataFormat18Bit
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