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§

source

fn into_typed<RowT: FromRow>(self) -> TypedRowIter<RowT>

Implementations on Foreign Types§

source§

impl IntoTypedRows for Vec<Row>

source§

fn into_typed<RowT: FromRow>(self) -> TypedRowIter<RowT>

Implementors§