Enum rss::Error
[−]
[src]
pub enum Error {
MissingField(&'static str, &'static str),
InvalidField(&'static str, &'static str),
Utf8(Utf8Error),
XmlParsing(XmlError),
NotFound,
}An enumration containing the types of errors that could occur while parsing an RSS feed.
Variants
MissingField(&'static str, &'static str)A required field was missing.
InvalidField(&'static str, &'static str)A field was the wrong type.
Utf8(Utf8Error)An error occurred while converting bytes to UTF8"
XmlParsing(XmlError)An XML parser error occurred.
NotFoundNo
Trait Implementations
impl Debug for Error[src]
impl StdError for Error[src]
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&StdError>
The lower-level cause of this error, if any. Read more