Type Alias ConfigResult

Source
pub type ConfigResult<T> = Result<T, ConfigErr>;
Expand description

A specialized Result type with ConfigErr as the error type.

Aliased Type§

pub enum ConfigResult<T> {
    Ok(T),
    Err(ConfigErr),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ConfigErr)

Contains the error value