pub trait ExpressionBoxExtwhere
Self: Expression + 'static,{
// Required method
fn boxed(self) -> BoxedExpression;
}
Expand description
Extension trait for boxing expressions.
This is not directly made into Expression
trait because…
- an expression does not have to be
'static
, - and for the ease of
auto_impl
.
Required Methods§
sourcefn boxed(self) -> BoxedExpression
fn boxed(self) -> BoxedExpression
Wrap the expression in a Box.