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