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