pub trait RowIndex: Debug + Display {
// Required methods
fn contains(&self, row: &Row) -> bool;
fn index(self, row: &Row) -> usize;
}Expand description
A type suitable for indexing columns in a row.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".