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