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