pub type Result<T> = Result<T, ConfigError>;
Expand description
Wraps std::result
with the error type of ConfigError
.
Aliased Type§
enum Result<T> {
Ok(T),
Err(ConfigError),
}
pub type Result<T> = Result<T, ConfigError>;
Wraps std::result
with the error type of ConfigError
.
enum Result<T> {
Ok(T),
Err(ConfigError),
}