Skip to main content

Result

Type Alias Result 

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

Result type used by the lower-level tree API.

The error type is ConfigTreeError.

Aliased Type§

pub enum Result<T> {
    Ok(T),
    Err(ConfigTreeError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ConfigTreeError)

Contains the error value