Trait minijinja::value::FunctionResult
source · pub trait FunctionResult { }
Expand description
A utility trait that represents the return value of functions and filters.
It’s implemented for the following types:
Rv
whereRv
implementsInto<AnyMapObject>
Result<Rv, Error>
whereRv
implementsInto<Value>
The equivalent for test functions is TestResult
.