[][src]Enum smpte2022_1_packet::Orientation

pub enum Orientation {
    Row,
    Column,
}

Identifies whether a FEC packet belongs to the is associated with a 'row' or a 'column' of media packets.

Variants

Row

FEC packet protects a row (indicated by the D field in the spec having value 1).

Column

FEC packet protects a column (indicated by the D field in the spec having value 0).

Trait Implementations

impl Debug for Orientation[src]

impl PartialEq<Orientation> for Orientation[src]

impl StructuralPartialEq for Orientation[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, 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.