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

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

Implementations

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> RefUnwindSafe for UnknownDescriptor<'buf>

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

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

impl<'buf> Unpin for UnknownDescriptor<'buf>

impl<'buf> UnwindSafe for UnknownDescriptor<'buf>

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.