pub trait RowColumns: Sealed {
type ValueTuple;
// Required method
fn into_row_expr(self) -> RowExpr<Self::ValueTuple>;
}Required Associated Types§
type ValueTuple
Required Methods§
fn into_row_expr(self) -> RowExpr<Self::ValueTuple>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".