[][src]Enum gstreamer_video::VideoAFDSpec

#[non_exhaustive]pub enum VideoAFDSpec {
    DvbEtsi,
    AtscA53,
    SmpteSt20161,
    // some variants omitted
}

Enumeration of the different standards that may apply to AFD data:

  1. ETSI/DVB: https://www.etsi.org/deliver/etsi_ts/101100_101199/101154/02.01.01_60/ts_101154v020101p.pdf

  2. ATSC A/53: https://www.atsc.org/wp-content/uploads/2015/03/a_53-Part-4-2009.pdf

  3. SMPTE ST2016-1:

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
DvbEtsi

AFD value is from DVB/ETSI standard

AtscA53

AFD value is from ATSC A/53 standard

Feature: v1_18

SmpteSt20161

Trait Implementations

impl Clone for VideoAFDSpec[src]

impl Copy for VideoAFDSpec[src]

impl Debug for VideoAFDSpec[src]

impl Eq for VideoAFDSpec[src]

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

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

impl Hash for VideoAFDSpec[src]

impl Ord for VideoAFDSpec[src]

impl PartialEq<VideoAFDSpec> for VideoAFDSpec[src]

impl PartialOrd<VideoAFDSpec> for VideoAFDSpec[src]

impl SetValue for VideoAFDSpec[src]

impl StaticType for VideoAFDSpec[src]

impl StructuralEq for VideoAFDSpec[src]

impl StructuralPartialEq for VideoAFDSpec[src]

Auto Trait Implementations

impl RefUnwindSafe for VideoAFDSpec

impl Send for VideoAFDSpec

impl Sync for VideoAFDSpec

impl Unpin for VideoAFDSpec

impl UnwindSafe for VideoAFDSpec

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.