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