Struct minijinja::Expression
source · pub struct Expression<'env, 'source> { /* private fields */ }
Expand description
A handle to a compiled expression.
An expression is created via the
compile_expression
method. It provides
a method to evaluate the expression and return the result as value object.
This for instance can be used to evaluate simple expressions from user
provided input to implement features such as dynamic filtering.
This is usually best paired with context
to pass
a single value to it.
§Example
let env = Environment::new();
let expr = env.compile_expression("number > 10 and number < 20").unwrap();
let rv = expr.eval(context!(number => 15)).unwrap();
assert!(rv.is_true());
Implementations§
source§impl<'env, 'source> Expression<'env, 'source>
impl<'env, 'source> Expression<'env, 'source>
sourcepub fn eval<S: Serialize>(&self, ctx: S) -> Result<Value, Error>
pub fn eval<S: Serialize>(&self, ctx: S) -> Result<Value, Error>
Evaluates the expression with some context.
The result of the expression is returned as Value
.
sourcepub fn undeclared_variables(&self, nested: bool) -> HashSet<String>
pub fn undeclared_variables(&self, nested: bool) -> HashSet<String>
Returns a set of all undeclared variables in the expression.
This works the same as
Template::undeclared_variables
.
Trait Implementations§
Auto Trait Implementations§
impl<'env, 'source> Freeze for Expression<'env, 'source>
impl<'env, 'source> !RefUnwindSafe for Expression<'env, 'source>
impl<'env, 'source> Send for Expression<'env, 'source>
impl<'env, 'source> Sync for Expression<'env, 'source>
impl<'env, 'source> Unpin for Expression<'env, 'source>
impl<'env, 'source> !UnwindSafe for Expression<'env, 'source>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more