pub trait ResultRowAccess {
// Required methods
fn get<I: RowIndex + Display + Clone, T: FromSql>(&mut self, idx: I) -> T;
fn get_opt<I: RowIndex + Display + Clone, T: FromSql>(
&mut self,
idx: I,
) -> SqliteResult<T>;
}
Expand description
Access result columns of a row by name or numeric index.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.