pub type ConfigResult<T> = Result<T, ConfigErr>;
A specialized Result type with ConfigErr as the error type.
Result
ConfigErr
pub enum ConfigResult<T> { Ok(T), Err(ConfigErr), }
Contains the success value
Contains the error value