#[repr(u32)]pub enum v4l2_colorspace {
Show 13 variants
V4L2_COLORSPACE_DEFAULT = 0,
V4L2_COLORSPACE_SMPTE170M = 1,
V4L2_COLORSPACE_SMPTE240M = 2,
V4L2_COLORSPACE_REC709 = 3,
V4L2_COLORSPACE_BT878 = 4,
V4L2_COLORSPACE_470_SYSTEM_M = 5,
V4L2_COLORSPACE_470_SYSTEM_BG = 6,
V4L2_COLORSPACE_JPEG = 7,
V4L2_COLORSPACE_SRGB = 8,
V4L2_COLORSPACE_OPRGB = 9,
V4L2_COLORSPACE_BT2020 = 10,
V4L2_COLORSPACE_RAW = 11,
V4L2_COLORSPACE_DCI_P3 = 12,
}
Variants§
V4L2_COLORSPACE_DEFAULT = 0
V4L2_COLORSPACE_SMPTE170M = 1
V4L2_COLORSPACE_SMPTE240M = 2
V4L2_COLORSPACE_REC709 = 3
V4L2_COLORSPACE_BT878 = 4
V4L2_COLORSPACE_470_SYSTEM_M = 5
V4L2_COLORSPACE_470_SYSTEM_BG = 6
V4L2_COLORSPACE_JPEG = 7
V4L2_COLORSPACE_SRGB = 8
V4L2_COLORSPACE_OPRGB = 9
V4L2_COLORSPACE_BT2020 = 10
V4L2_COLORSPACE_RAW = 11
V4L2_COLORSPACE_DCI_P3 = 12
Trait Implementations§
Source§impl Clone for v4l2_colorspace
impl Clone for v4l2_colorspace
Source§fn clone(&self) -> v4l2_colorspace
fn clone(&self) -> v4l2_colorspace
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_colorspace
impl Debug for v4l2_colorspace
Source§impl Hash for v4l2_colorspace
impl Hash for v4l2_colorspace
Source§impl PartialEq for v4l2_colorspace
impl PartialEq for v4l2_colorspace
impl Copy for v4l2_colorspace
impl Eq for v4l2_colorspace
impl StructuralPartialEq for v4l2_colorspace
Auto Trait Implementations§
impl Freeze for v4l2_colorspace
impl RefUnwindSafe for v4l2_colorspace
impl Send for v4l2_colorspace
impl Sync for v4l2_colorspace
impl Unpin for v4l2_colorspace
impl UnwindSafe for v4l2_colorspace
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