[][src]Enum imxrt1062_pxp::out_ctrl_tog::INTERLACED_OUTPUT_A

#[repr(u8)]pub enum INTERLACED_OUTPUT_A {
    PROGRESSIVE,
    FIELD0,
    FIELD1,
    INTERLACED,
}

Determines how the PXP writes it's output data

Value on reset: 0

Variants

PROGRESSIVE

0: All data written in progressive format to the OUTBUF Pointer.

FIELD0

1: Interlaced output: only data for field 0 is written to the OUTBUF Pointer.

FIELD1

2: Interlaced output: only data for field 1 is written to the OUTBUF2 Pointer.

INTERLACED

3: Interlaced output: data for field 0 is written to OUTBUF and data for field 1 is written to OUTBUF2.

Trait Implementations

impl Clone for INTERLACED_OUTPUT_A[src]

impl Copy for INTERLACED_OUTPUT_A[src]

impl Debug for INTERLACED_OUTPUT_A[src]

impl From<INTERLACED_OUTPUT_A> for u8[src]

impl PartialEq<INTERLACED_OUTPUT_A> for INTERLACED_OUTPUT_A[src]

impl StructuralPartialEq for INTERLACED_OUTPUT_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.