Type Alias FeedCollectError
pub type FeedCollectError = CollectError<Feed>;Available on crate features
http and rss only.Expand description
Format-agnostic alias.
Aliased Type§
pub struct FeedCollectError {
pub error: FeedParseError,
pub partial: Feed,
}Fields§
§error: FeedParseErrorThe underlying per-item parse error.
partial: FeedThe 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.