Enum rss::Error [] [src]

pub enum Error {
    Utf8(Utf8Error),
    XmlParsing(XmlErrorusize),
    EOF,
}

Types of errors that could occur while parsing an RSS feed.

Variants

An error occurred while converting bytes to UTF8.

An XML parser error occurred.

The end of the input was reached without finding a complete channel element.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl StdError for Error
[src]

A short description of the error. Read more

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

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl From<(XmlError, usize)> for Error
[src]

Performs the conversion.

impl From<Utf8Error> for Error
[src]

Performs the conversion.

impl From<FromUtf8Error> for Error
[src]

Performs the conversion.