[][src]Enum imxrt1062_lcdif::ctrl_tog::DATA_FORMAT_24_BIT_A

pub enum DATA_FORMAT_24_BIT_A {
    ALL_24_BITS_VALID,
    DROP_UPPER_2_BITS_PER_BYTE,
}

Used only when WORD_LENGTH = 3, i

Value on reset: 0

Variants

ALL_24_BITS_VALID

0: Data input to the block is in 24 bpp format, such that all RGB 888 data is contained in 24 bits.

DROP_UPPER_2_BITS_PER_BYTE

1: Data input to the block is actually RGB 18 bpp, but there is 1 color per byte, hence the upper 2 bits in each byte do not contain any useful data, and should be dropped.

Trait Implementations

impl Clone for DATA_FORMAT_24_BIT_A[src]

impl Copy for DATA_FORMAT_24_BIT_A[src]

impl Debug for DATA_FORMAT_24_BIT_A[src]

impl From<DATA_FORMAT_24_BIT_A> for bool[src]

impl PartialEq<DATA_FORMAT_24_BIT_A> for DATA_FORMAT_24_BIT_A[src]

impl StructuralPartialEq for DATA_FORMAT_24_BIT_A[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.