pub type Result<T, E = Box<dyn Error>> = Result<T, E>;
Tidy result alias.
pub enum Result<T, E = Box<dyn Error>> { Ok(T), Err(E), }
Contains the success value
Contains the error value