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