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