Trait scylla_rs::prelude::Rows[][src]

pub trait Rows: Iterator {
    fn new(decoder: Decoder) -> Result<Self>
    where
        Self: Sized
;
fn take_paging_state(&mut self) -> Option<Vec<u8>>; }

Rows trait to decode the final result from scylla

Required methods

fn new(decoder: Decoder) -> Result<Self> where
    Self: Sized
[src]

create new rows decoder struct

fn take_paging_state(&mut self) -> Option<Vec<u8>>[src]

Take the paging_state from the Rows result

Loading content...

Implementors

impl<T: Row> Rows for Iter<T>[src]

Loading content...