Skip to main content

YamlResult

Type Alias YamlResult 

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

Result type for yaml-edit operations

Aliased Type§

pub enum YamlResult<T> {
    Ok(T),
    Err(YamlError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(YamlError)

Contains the error value