scylla::transport::session

Trait 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>

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.

Implementations on Foreign Types§

Source§

impl IntoTypedRows for Vec<Row>

Source§

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

Implementors§