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