pub type Result<T, E = Error> = Result<T, E>;
A result that is either Ok(T) or Err(mutatis::Error).
Ok(T)
Err(mutatis::Error)
pub enum Result<T, E = Error> { Ok(T), Err(E), }
Contains the success value
Contains the error value
Exhausted
Ok(())