Type Alias r::lang::EvalResult

source ·
pub type EvalResult = Result<Obj, Signal>;

Aliased Type§

enum EvalResult {
    Ok(Obj),
    Err(Signal),
}

Variants§

§1.0.0

Ok(Obj)

Contains the success value

§1.0.0

Err(Signal)

Contains the error value

Trait Implementations§

source§

impl From<Cond> for EvalResult

source§

fn from(val: Cond) -> Self

Converts to this type from the input type.