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