pub trait TableInstance: Instance<Class = TableType> {
    fn key(&self) -> &[Column];
    fn values(&self) -> &[Column];
    fn schema(&self) -> TableSchema;
}
Expand description

Methods common to every Table view.

Required Methods

Return the schema of this Table’s key.

Return the schema of this Table’s values.

Return the schema of this Table.

Implementors