pub type Result<T> = Result<T, RssError>;
Expand description
Result type for RSS operations.
This type alias provides a convenient way to return results from RSS operations,
where the error type is always RssError
.
Aliased Type§
enum Result<T> {
Ok(T),
Err(RssError),
}