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