pub trait RowIndex: Sealed {
// Required method
fn idx(&self, stmt: &Statement<'_>) -> Result<usize>;
}Expand description
A trait implemented by types that can index into columns of a row.
It is only implemented for usize and &str.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".