Type Alias Result

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

Result type used throughout the crate.

This is a convenience type alias that uses the ExprError type for the error variant.

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ExprError)

Contains the error value