Type Alias conjure_oxide::rule_engine::ApplicationResult

source ·
pub type ApplicationResult = Result<Reduction, ApplicationError>;
Expand description

The result of applying a rule to an expression. Contains either a set of reduction instructions or an error.

Aliased Type§

enum ApplicationResult {
    Ok(Reduction),
    Err(ApplicationError),
}

Variants§

§1.0.0

Ok(Reduction)

Contains the success value

§1.0.0

Err(ApplicationError)

Contains the error value