pub trait IntoTypedRows {
    fn into_typed<RowT: FromRow>(self) -> TypedRowIter<RowT>Notable traits for TypedRowIter<RowT>impl<RowT: FromRow> Iterator for TypedRowIter<RowT>    type Item = Result<RowT, FromRowError>;;
}
Expand description

Trait used to implement Vec<result::Row>::into_typed<RowT>

Required Methods

Implementations on Foreign Types

Implementors