Type Alias AtomCollectError
pub type AtomCollectError = CollectError<AtomFeed>;Available on crate features
http and rss and std only.Expand description
Per-format convenience alias.
Aliased Type§
pub struct AtomCollectError {
pub error: FeedParseError,
pub partial: Box<AtomFeed>,
}Fields§
§error: FeedParseErrorThe underlying per-item parse error.
partial: Box<AtomFeed>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.