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.