[][src]Enum mpeg2ts_reader::packet::TransportScramblingControl

pub enum TransportScramblingControl {
    NotScrambled,
    Undefined(u8),
}

Indicates content scrambling in use, if any.

Actual content scrambling schemes, indicates through the u8 value in the Unefined variant, are undefined in the main TS spec (left to be described by other specifications).

Variants

NotScrambled

The stream is not scrambled.

Undefined(u8)

The stream is scrambled using a scheme not defined in the TS spec.

Trait Implementations

impl Eq for TransportScramblingControl[src]

impl PartialEq<TransportScramblingControl> for TransportScramblingControl[src]

impl Debug for TransportScramblingControl[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.