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