xitca_postgres

Type Alias RowSimpleStream

source
pub type RowSimpleStream = GenericRowStream<Vec<Column>, NoTyped>;
Expand description

A stream of simple query results.

Aliased Type§

struct RowSimpleStream { /* private fields */ }

Trait Implementations§

source§

impl AsyncLendingIterator for RowSimpleStream

source§

type Ok<'i> = GenericRow<&'i [Column], &'i mut Vec<Range<usize>>, NoTyped> 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>)

source§

impl IntoIterator for RowSimpleStream

source§

type IntoIter = GenericRowStream<Arc<[Column]>, NoTyped>

Which kind of iterator are we turning this into?
source§

type Item = Result<GenericRow<Arc<[Column]>, Vec<Range<usize>>, NoTyped>, Error>

The type of the elements being iterated over.
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more