Trait scylla::transport::session::IntoTypedRows

source ·
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>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl IntoTypedRows for Vec<Row>

source§

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

Implementors§