Enum mpeg2ts_reader::descriptor::DescriptorError[][src]

pub enum DescriptorError {
    NotEnoughData {
        tag: u8,
        actual: usize,
        expected: usize,
    },
    TagTooLongForBuffer {
        taglen: usize,
        buflen: usize,
    },
    BufferTooShort {
        buflen: usize,
    },
    UnhandledTagValue(u8),
}

Variants

Fields of NotEnoughData

Fields of TagTooLongForBuffer

Fields of BufferTooShort

Trait Implementations

impl Debug for DescriptorError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for DescriptorError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations