pub trait IntoAsTable {
type Table;
type RowKey: RowKey;
type Row: Cells<Self::CellKey>;
type CellKey: CellKey + ?Sized;
// Required method
fn as_table(
&self,
) -> AsTable<'_, Self::Table, Self::RowKey, Self::Row, Self::CellKey>;
}
Expand description
Trait for converting data references into AsTable
references.
IntoAsTable
provides a way to interpret data as a table, encapsulating
the necessary type information for handling table-like structures.