Type Alias evalexpr::error::EvalexprResult

source ·
pub type EvalexprResult<T> = Result<T, EvalexprError>;
Expand description

Standard result type used by this crate.

Aliased Type§

enum EvalexprResult<T> {
    Ok(T),
    Err(EvalexprError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(EvalexprError)

Contains the error value

Trait Implementations§

source§

impl From<Value> for EvalexprResult<Value>

source§

fn from(value: Value) -> Self

Converts to this type from the input type.