[][src]Enum gstreamer_video::VideoColorMatrix

pub enum VideoColorMatrix {
    Unknown,
    Rgb,
    Fcc,
    Bt709,
    Bt601,
    Smpte240m,
    Bt2020,
    // some variants omitted
}

The color matrix is used to convert between Y'PbPr and non-linear RGB (R'G'B')

Variants

Unknown
Rgb
Fcc
Bt709
Bt601
Smpte240m
Bt2020

Trait Implementations

impl Clone for VideoColorMatrix[src]

impl Copy for VideoColorMatrix[src]

impl Debug for VideoColorMatrix[src]

impl Eq for VideoColorMatrix[src]

impl<'a> FromValue<'a> for VideoColorMatrix[src]

impl<'a> FromValueOptional<'a> for VideoColorMatrix[src]

impl Hash for VideoColorMatrix[src]

impl Ord for VideoColorMatrix[src]

impl PartialEq<VideoColorMatrix> for VideoColorMatrix[src]

impl PartialOrd<VideoColorMatrix> for VideoColorMatrix[src]

impl SetValue for VideoColorMatrix[src]

impl StaticType for VideoColorMatrix[src]

impl StructuralEq for VideoColorMatrix[src]

impl StructuralPartialEq for VideoColorMatrix[src]

Auto Trait Implementations

impl RefUnwindSafe for VideoColorMatrix

impl Send for VideoColorMatrix

impl Sync for VideoColorMatrix

impl Unpin for VideoColorMatrix

impl UnwindSafe for VideoColorMatrix

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> ToSendValue for T where
    T: ToValue + SetValue + Send + ?Sized
[src]

impl<T> ToValue for T where
    T: SetValue + ?Sized
[src]

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.