pub type ConfigResult<T> = Result<T, ConfigError>;Expand description
Result type used by the high-level configuration API.
The error type is ConfigError.
Aliased Type§
pub enum ConfigResult<T> {
Ok(T),
Err(ConfigError),
}pub type ConfigResult<T> = Result<T, ConfigError>;Result type used by the high-level configuration API.
The error type is ConfigError.
pub enum ConfigResult<T> {
Ok(T),
Err(ConfigError),
}