#[repr(u32)]pub enum v4l2_auto_n_preset_white_balance {
V4L2_WHITE_BALANCE_MANUAL = 0,
V4L2_WHITE_BALANCE_AUTO = 1,
V4L2_WHITE_BALANCE_INCANDESCENT = 2,
V4L2_WHITE_BALANCE_FLUORESCENT = 3,
V4L2_WHITE_BALANCE_FLUORESCENT_H = 4,
V4L2_WHITE_BALANCE_HORIZON = 5,
V4L2_WHITE_BALANCE_DAYLIGHT = 6,
V4L2_WHITE_BALANCE_FLASH = 7,
V4L2_WHITE_BALANCE_CLOUDY = 8,
V4L2_WHITE_BALANCE_SHADE = 9,
}
Variants§
V4L2_WHITE_BALANCE_MANUAL = 0
V4L2_WHITE_BALANCE_AUTO = 1
V4L2_WHITE_BALANCE_INCANDESCENT = 2
V4L2_WHITE_BALANCE_FLUORESCENT = 3
V4L2_WHITE_BALANCE_FLUORESCENT_H = 4
V4L2_WHITE_BALANCE_HORIZON = 5
V4L2_WHITE_BALANCE_DAYLIGHT = 6
V4L2_WHITE_BALANCE_FLASH = 7
V4L2_WHITE_BALANCE_CLOUDY = 8
V4L2_WHITE_BALANCE_SHADE = 9
Trait Implementations§
Source§impl Clone for v4l2_auto_n_preset_white_balance
impl Clone for v4l2_auto_n_preset_white_balance
Source§fn clone(&self) -> v4l2_auto_n_preset_white_balance
fn clone(&self) -> v4l2_auto_n_preset_white_balance
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 PartialEq for v4l2_auto_n_preset_white_balance
impl PartialEq for v4l2_auto_n_preset_white_balance
Source§fn eq(&self, other: &v4l2_auto_n_preset_white_balance) -> bool
fn eq(&self, other: &v4l2_auto_n_preset_white_balance) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for v4l2_auto_n_preset_white_balance
impl Eq for v4l2_auto_n_preset_white_balance
impl StructuralPartialEq for v4l2_auto_n_preset_white_balance
Auto Trait Implementations§
impl Freeze for v4l2_auto_n_preset_white_balance
impl RefUnwindSafe for v4l2_auto_n_preset_white_balance
impl Send for v4l2_auto_n_preset_white_balance
impl Sync for v4l2_auto_n_preset_white_balance
impl Unpin for v4l2_auto_n_preset_white_balance
impl UnwindSafe for v4l2_auto_n_preset_white_balance
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