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