Enum m3u::EntryExtReaderConstructionError [] [src]

pub enum EntryExtReaderConstructionError {
    HeaderNotFound,
    BufRead(Error),
}

Errors that may occur when constructing a new Reader<R, EntryExt>.

Variants

The "#EXTM3U" header was not found in the first line when attempting to construct a Reader<R, EntryExt> from some given Reader.

Errors produced by the BufRead::read_line method.

Trait Implementations

impl Debug for EntryExtReaderConstructionError
[src]

Formats the value using the given formatter.

impl From<Error> for EntryExtReaderConstructionError
[src]

Performs the conversion.

impl Error for EntryExtReaderConstructionError
[src]

A short description of the error. Read more

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

impl Display for EntryExtReaderConstructionError
[src]

Formats the value using the given formatter. Read more