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