pub type Result<T> = Result<T, Box<Error>>;
A simple Result alias with the crate specific Error type.
Error
pub enum Result<T> { Ok(T), Err(Box<Error>), }
Contains the success value
Contains the error value