Type Definition evalexpr::error::EvalexprResult[][src]

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

Standard result type used by this crate.

Trait Implementations

impl From<Value> for EvalexprResult<Value>[src]

fn from(value: Value) -> Self[src]

Performs the conversion.