#[repr(u32)]pub enum vpx_color_space {
VPX_CS_UNKNOWN = 0,
VPX_CS_BT_601 = 1,
VPX_CS_BT_709 = 2,
VPX_CS_SMPTE_170 = 3,
VPX_CS_SMPTE_240 = 4,
VPX_CS_BT_2020 = 5,
VPX_CS_RESERVED = 6,
VPX_CS_SRGB = 7,
}Variants§
VPX_CS_UNKNOWN = 0
VPX_CS_BT_601 = 1
VPX_CS_BT_709 = 2
VPX_CS_SMPTE_170 = 3
VPX_CS_SMPTE_240 = 4
VPX_CS_BT_2020 = 5
VPX_CS_RESERVED = 6
VPX_CS_SRGB = 7
Trait Implementations§
Source§impl Clone for vpx_color_space
impl Clone for vpx_color_space
Source§fn clone(&self) -> vpx_color_space
fn clone(&self) -> vpx_color_space
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for vpx_color_space
Source§impl Debug for vpx_color_space
impl Debug for vpx_color_space
impl Eq for vpx_color_space
Source§impl Hash for vpx_color_space
impl Hash for vpx_color_space
Source§impl PartialEq for vpx_color_space
impl PartialEq for vpx_color_space
impl StructuralPartialEq for vpx_color_space
Auto Trait Implementations§
impl Freeze for vpx_color_space
impl RefUnwindSafe for vpx_color_space
impl Send for vpx_color_space
impl Sync for vpx_color_space
impl Unpin for vpx_color_space
impl UnsafeUnpin for vpx_color_space
impl UnwindSafe for vpx_color_space
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