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