pub type Result<'a, T, E = Error<'a>> = Result<T, E>;
Result with an error type defaulting to Error.
pub enum Result<'a, T, E = Error<'a>> { Ok(T), Err(E), }
Contains the success value
Contains the error value