#[repr(u32)]pub enum v4l2_field {
V4L2_FIELD_ANY = 0,
V4L2_FIELD_NONE = 1,
V4L2_FIELD_TOP = 2,
V4L2_FIELD_BOTTOM = 3,
V4L2_FIELD_INTERLACED = 4,
V4L2_FIELD_SEQ_TB = 5,
V4L2_FIELD_SEQ_BT = 6,
V4L2_FIELD_ALTERNATE = 7,
V4L2_FIELD_INTERLACED_TB = 8,
V4L2_FIELD_INTERLACED_BT = 9,
}
Variants§
V4L2_FIELD_ANY = 0
V4L2_FIELD_NONE = 1
V4L2_FIELD_TOP = 2
V4L2_FIELD_BOTTOM = 3
V4L2_FIELD_INTERLACED = 4
V4L2_FIELD_SEQ_TB = 5
V4L2_FIELD_SEQ_BT = 6
V4L2_FIELD_ALTERNATE = 7
V4L2_FIELD_INTERLACED_TB = 8
V4L2_FIELD_INTERLACED_BT = 9
Trait Implementations§
Source§impl Clone for v4l2_field
impl Clone for v4l2_field
Source§fn clone(&self) -> v4l2_field
fn clone(&self) -> v4l2_field
Returns a copy 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 v4l2_field
impl Debug for v4l2_field
Source§impl Hash for v4l2_field
impl Hash for v4l2_field
Source§impl PartialEq for v4l2_field
impl PartialEq for v4l2_field
impl Copy for v4l2_field
impl Eq for v4l2_field
impl StructuralPartialEq for v4l2_field
Auto Trait Implementations§
impl Freeze for v4l2_field
impl RefUnwindSafe for v4l2_field
impl Send for v4l2_field
impl Sync for v4l2_field
impl Unpin for v4l2_field
impl UnwindSafe for v4l2_field
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