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