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