pub type Result<T> = Result<T, RssError>;
Result type for RSS operations.
pub enum Result<T> { Ok(T), Err(RssError), }
Contains the success value
Contains the error value