Skip to main content

Rss2CollectError

Type Alias Rss2CollectError 

pub type Rss2CollectError = CollectError<Rss2Feed>;
Available on crate features http and rss only.
Expand description

Per-format convenience alias.

Aliased Type§

pub struct Rss2CollectError {
    pub error: FeedParseError,
    pub partial: Rss2Feed,
}

Fields§

§error: FeedParseError

The underlying per-item parse error.

§partial: Rss2Feed

The header plus every item / entry that was parsed before the error. The header is always populated; the items list may be empty if the failure happened on the very first item.