pub type ManaResult<T> = Result<T, ManaError>;
Convenience alias used throughout the public API.
pub enum ManaResult<T> { Ok(T), Err(ManaError), }
Contains the success value
Contains the error value