Type Alias xitca_postgres::RowStream

source ·
pub type RowStream<'a> = GenericRowStream<&'a [Column]>;
Expand description

A stream of table rows.

Aliased Type§

struct RowStream<'a> { /* private fields */ }

Trait Implementations§

source§

impl<'a> AsyncLendingIterator for RowStream<'a>

source§

type Ok<'i> = GenericRow<&'i [Column], &'i mut Vec<Range<usize>>, Typed> where Self: 'i

source§

type Err = Error

source§

async fn try_next(&mut self) -> Result<Option<Self::Ok<'_>>, Self::Err>

source§

fn size_hint(&self) -> (usize, Option<usize>)