pub type Result<T> = Result<T, FeedError>;
Result type for feed parsing operations
pub enum Result<T> { Ok(T), Err(FeedError), }
Contains the success value
Contains the error value