pub type DiResult<T> = Result<T, DiError>;
Dependency injection result type
pub enum DiResult<T> { Ok(T), Err(DiError), }
Contains the success value
Contains the error value