pub trait RowIndex: Debug {
// Required method
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".