pub trait AsyncExpressionBoxExtwhere
Self: AsyncExpression + 'static,{
// Required method
fn boxed(self) -> BoxedExpression;
}Expand description
Extension trait for boxing async expressions.
Required Methods§
Sourcefn boxed(self) -> BoxedExpression
fn boxed(self) -> BoxedExpression
Wrap the expression in a BoxedExpression::Async.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".