pub trait ColumnIndex {
    fn idx(&self, columns: &Vec<Column>) -> Option<usize>;
}
Expand description

Things that may be used as an index of a row column.

Required Methods

Implementations on Foreign Types

Implementors