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