pub trait RowColumnList<Row: ?Sized> {
type Columns: TypeSet;
}Expand description
Type-level column-list representation for a row decode target.
Each consumed column is represented by a Cons<T, ...> node where T
is the decoded Rust type for that column.
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".