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