[][src]Struct mpeg2ts_reader::descriptor::UnknownDescriptor

pub struct UnknownDescriptor<'buf> {
    pub tag: u8,
    pub payload: &'buf [u8],
}

Catch-all type for when there is no explicit handling for the given descriptor type.

Fields

tag: u8

the descriptor's identifying 'tag' value; different types of descriptors are assigned different tag values

payload: &'buf [u8]

the descriptor's payload bytes

Methods

impl<'buf> UnknownDescriptor<'buf>[src]

pub fn new(
    tag: u8,
    payload: &'buf [u8]
) -> Result<UnknownDescriptor<'buf>, DescriptorError>
[src]

Constructor, in the form required for use with the descriptor_enum!{} macro.

Trait Implementations

impl<'buf> Debug for UnknownDescriptor<'buf>[src]

Auto Trait Implementations

impl<'buf> Send for UnknownDescriptor<'buf>

impl<'buf> Sync for UnknownDescriptor<'buf>

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.