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