Type Definition evalexpr::error::EvalexprResult

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

Standard result type used by this crate.

Trait Implementations§

source§

impl From<Value> for EvalexprResult<Value>

source§

fn from(value: Value) -> Self

Converts to this type from the input type.