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