pub trait IntoExpression: IntoIterator {
type Shape: Shape;
type IntoExpr: Expression<Item = Self::Item, Shape = Self::Shape>;
// Required method
fn into_expr(self) -> Self::IntoExpr;
}Expand description
Conversion trait into an expression.
Required Associated Types§
Sourcetype IntoExpr: Expression<Item = Self::Item, Shape = Self::Shape>
type IntoExpr: Expression<Item = Self::Item, Shape = Self::Shape>
Which kind of expression are we turning this into?