Enum matroska::MatroskaError[][src]

pub enum MatroskaError {
    Io(Error),
    UTF8(FromUtf8Error),
    InvalidID,
    InvalidSize,
    InvalidUint,
    InvalidFloat,
    InvalidDate,
}

A possible error when parsing a Matroska file

Variants

An I/O error

An error decoding a UTF-8 string

An invalid element ID

An invalid element size

An invalid unsigned integer

An invalid floating point value

An invalid date value

Trait Implementations

impl Debug for MatroskaError
[src]

Formats the value using the given formatter. Read more

impl Display for MatroskaError
[src]

Formats the value using the given formatter. Read more

impl Error for MatroskaError
[src]

The lower-level cause of this error, if any. Read more

This method is soft-deprecated. Read more

Auto Trait Implementations