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