pub trait IntoTypedRows {
// Required method
fn into_typed<RowT: FromRow>(self) -> TypedRowIter<RowT> ⓘ;
}
Expand description
Trait used to implement Vec<result::Row>::into_typed<RowT>
Required Methods§
fn into_typed<RowT: FromRow>(self) -> TypedRowIter<RowT> ⓘ
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.