Enum vp9_parser::ColorSpace[][src]

pub enum ColorSpace {
    Unknown,
    Bt601,
    Bt709,
    Smpte170,
    Smpte240,
    Bt2020,
    Reserved,
    Rgb,
}

Color space.

Variants

Unknown

Unknown (in this case the color space must be signaled outside the VP9 bitstream).

Bt601

Rec. ITU-R BT.601-7

Bt709

Rec. ITU-R BT.709-6

Smpte170

SMPTE-170

Smpte240

SMPTE-240

Bt2020

Rec. ITU-R BT.2020-2

Reserved

Reserved

Rgb

sRGB (IEC 61966-2-1)

Trait Implementations

impl Clone for ColorSpace[src]

impl Copy for ColorSpace[src]

impl Debug for ColorSpace[src]

impl Eq for ColorSpace[src]

impl From<u8> for ColorSpace[src]

impl Ord for ColorSpace[src]

impl PartialEq<ColorSpace> for ColorSpace[src]

impl PartialOrd<ColorSpace> for ColorSpace[src]

impl StructuralEq for ColorSpace[src]

impl StructuralPartialEq for ColorSpace[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.