pub type MesaResult<T> = Result<T, MesaError>;
The result of an operation in this crate.
enum MesaResult<T> { Ok(T), Err(MesaError), }
Contains the success value
Contains the error value