Struct liquid_interpreter::BoxedValueFilter[][src]

pub struct BoxedValueFilter { /* fields omitted */ }

Custom Box<FilterValue> with a FnFilterValue optimization.

Trait Implementations

impl Clone for BoxedValueFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl FilterValue for BoxedValueFilter
[src]

Filter input based on arguments.

impl From<fn(_: &Value, _: &[Value]) -> FilterResult> for BoxedValueFilter
[src]

Performs the conversion.

impl From<Box<FilterValue>> for BoxedValueFilter
[src]

Performs the conversion.

Auto Trait Implementations