Struct mpeg2ts_reader::descriptor::UnknownDescriptor [−][src]
Catch-all type for when there is no explicit handling for the given descriptor type.
Fields
tag: u8the 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]
tag: u8,
payload: &'buf [u8]
) -> Result<UnknownDescriptor<'buf>, DescriptorError>
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,