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