pub trait ContextWithMutableVariables: Context {
    // Provided method
    fn set_value(
        &mut self,
        _identifier: String,
        _value: Value
    ) -> EvalexprResult<()> { ... }
}
Expand description

A context that allows to assign to variables.

Provided Methods§

source

fn set_value( &mut self, _identifier: String, _value: Value ) -> EvalexprResult<()>

Sets the variable with the given identifier to the given value.

Implementors§