pub type ContentResult<T> = Result<T, ContentError>;
pub enum ContentResult<T> { Ok(T), Err(ContentError), }
Contains the success value
Contains the error value