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