pub enum MatrixCoefficients {
Show 15 variants
Identity = 0,
Bt709 = 1,
Unspecified = 2,
Reserved3 = 3,
Fcc = 4,
Bt470bg = 5,
Bt601 = 6,
Smpte240 = 7,
Ycgco = 8,
Bt2020Ncl = 9,
Bt2020Cl = 10,
Smpte2085 = 11,
ChromaDerivedNcl = 12,
ChromaDerivedCl = 13,
Ictcp = 14,
}
Variants§
Identity = 0
Bt709 = 1
Unspecified = 2
Reserved3 = 3
Fcc = 4
Bt470bg = 5
Bt601 = 6
Smpte240 = 7
Ycgco = 8
Bt2020Ncl = 9
Bt2020Cl = 10
Smpte2085 = 11
ChromaDerivedNcl = 12
ChromaDerivedCl = 13
Ictcp = 14
Trait Implementations§
Source§impl Clone for MatrixCoefficients
impl Clone for MatrixCoefficients
Source§fn clone(&self) -> MatrixCoefficients
fn clone(&self) -> MatrixCoefficients
Returns a duplicate 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 MatrixCoefficients
impl Debug for MatrixCoefficients
Source§impl Default for MatrixCoefficients
impl Default for MatrixCoefficients
Source§fn default() -> MatrixCoefficients
fn default() -> MatrixCoefficients
Returns the “default value” for a type. Read more
Source§impl Ord for MatrixCoefficients
impl Ord for MatrixCoefficients
Source§fn cmp(&self, other: &MatrixCoefficients) -> Ordering
fn cmp(&self, other: &MatrixCoefficients) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MatrixCoefficients
impl PartialEq for MatrixCoefficients
Source§impl PartialOrd for MatrixCoefficients
impl PartialOrd for MatrixCoefficients
Source§impl TryFrom<u32> for MatrixCoefficients
impl TryFrom<u32> for MatrixCoefficients
impl Copy for MatrixCoefficients
impl Eq for MatrixCoefficients
impl StructuralPartialEq for MatrixCoefficients
Auto Trait Implementations§
impl Freeze for MatrixCoefficients
impl RefUnwindSafe for MatrixCoefficients
impl Send for MatrixCoefficients
impl Sync for MatrixCoefficients
impl Unpin for MatrixCoefficients
impl UnwindSafe for MatrixCoefficients
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