#[repr(u8)]pub enum YuvRangedColorSpace {
Rec601Narrow = 0,
Rec601Full = 1,
Rec709Narrow = 2,
Rec709Full = 3,
Rec2020Narrow = 4,
Rec2020Full = 5,
GbrIdentity = 6,
}
Variants§
Rec601Narrow = 0
Rec601Full = 1
Rec709Narrow = 2
Rec709Full = 3
Rec2020Narrow = 4
Rec2020Full = 5
GbrIdentity = 6
Trait Implementations§
source§impl Clone for YuvRangedColorSpace
impl Clone for YuvRangedColorSpace
source§fn clone(&self) -> YuvRangedColorSpace
fn clone(&self) -> YuvRangedColorSpace
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 YuvRangedColorSpace
impl Debug for YuvRangedColorSpace
source§impl Default for YuvRangedColorSpace
impl Default for YuvRangedColorSpace
source§impl<'de> Deserialize<'de> for YuvRangedColorSpace
impl<'de> Deserialize<'de> for YuvRangedColorSpace
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for YuvRangedColorSpace
impl Hash for YuvRangedColorSpace
source§impl MallocSizeOf for YuvRangedColorSpace
impl MallocSizeOf for YuvRangedColorSpace
source§fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
Measure the heap usage of all descendant heap-allocated structures, but
not the space taken up by the value itself.
source§impl PartialEq for YuvRangedColorSpace
impl PartialEq for YuvRangedColorSpace
source§fn eq(&self, other: &YuvRangedColorSpace) -> bool
fn eq(&self, other: &YuvRangedColorSpace) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Peek for YuvRangedColorSpace
impl Peek for YuvRangedColorSpace
source§impl Poke for YuvRangedColorSpace
impl Poke for YuvRangedColorSpace
source§impl Serialize for YuvRangedColorSpace
impl Serialize for YuvRangedColorSpace
impl Copy for YuvRangedColorSpace
impl Eq for YuvRangedColorSpace
impl StructuralPartialEq for YuvRangedColorSpace
Auto Trait Implementations§
impl Freeze for YuvRangedColorSpace
impl RefUnwindSafe for YuvRangedColorSpace
impl Send for YuvRangedColorSpace
impl Sync for YuvRangedColorSpace
impl Unpin for YuvRangedColorSpace
impl UnwindSafe for YuvRangedColorSpace
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