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