pub trait RowIndex: Sealed { // Required method fn idx(&self, stmt: &Statement<'_>) -> Result<usize>; }
A trait implemented by types that can index into columns of a row.
It is only implemented for usize and &str.
usize
&str
Returns the index of the appropriate column, or None if no such column exists.
None