pub type Result<T> = Result<T, Box<dyn Error + Send + 'static>>;
pub enum Result<T> { Ok(T), Err(Box<dyn Error + Send>), }
Contains the success value
Contains the error value