Enum m3u::ReadEntryExtError [] [src]

pub enum ReadEntryExtError {
    ExtInfNotFound(Entry),
    BufRead(Error),
}

Errors that may occur when attempting to read an EntryExt from a read line str.

Variants

Either the "#EXTINF:" tag was not found for the EntryExt or the duration and name following the tag were not correctly formatted.

Assuming that the tag was simply omitted, the line will instead be parsed as an Entry.

Errors produced by the BufRead::read_line method.

Trait Implementations

impl Debug for ReadEntryExtError
[src]

Formats the value using the given formatter.

impl From<Error> for ReadEntryExtError
[src]

Performs the conversion.

impl Error for ReadEntryExtError
[src]

A short description of the error. Read more

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

impl Display for ReadEntryExtError
[src]

Formats the value using the given formatter. Read more