pub type MiniResult<T> = Result<T, MiniError>;
The result type for this crate.
pub enum MiniResult<T> { Ok(T), Err(MiniError), }
Contains the success value
Contains the error value