Enum vp9_parser::Profile[][src]

pub enum Profile {
    Unknown,
    Profile0,
    Profile1,
    Profile2,
    Profile3,
}

The VP9 profiles.

Variants

Unknown

Unknown.

Profile0

Color depth: 8 bit/sample, chroma subsampling: 4:2:0

Profile1

Color depth: 8 bit, chroma subsampling: 4:2:2, 4:4:0, 4:4:4

Profile2

Color depth: 10–12 bit, chroma subsampling: 4:2:0

Profile3

Color depth: 10–12 bit, chroma subsampling: 4:2:2, 4:4:0, 4:4:4

Trait Implementations

impl Clone for Profile[src]

impl Copy for Profile[src]

impl Debug for Profile[src]

impl Eq for Profile[src]

impl From<u8> for Profile[src]

impl Ord for Profile[src]

impl PartialEq<Profile> for Profile[src]

impl PartialOrd<Profile> for Profile[src]

impl StructuralEq for Profile[src]

impl StructuralPartialEq for Profile[src]

Auto Trait Implementations

impl RefUnwindSafe for Profile

impl Send for Profile

impl Sync for Profile

impl Unpin for Profile

impl UnwindSafe for Profile

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.