Struct neo4rs::RowStream

source ·
pub struct RowStream { /* private fields */ }
Expand description

An abstraction over a stream of rows, this is returned as a result of crate::Txn::execute.

A stream needs a running transaction to be consumed.

Implementations§

source§

impl RowStream

source

pub async fn next( &mut self, handle: impl TransactionHandle ) -> Result<Option<Row>>

A call to next() will return a row from an internal buffer if the buffer has any entries, if the buffer is empty and the server has more rows left to consume, then a new batch of rows are fetched from the server (using the fetch_size value configured see crate::ConfigBuilder::fetch_size)

source

pub fn into_stream( self, handle: impl TransactionHandle ) -> impl TryStream<Ok = Row, Error = Error>

Turns this RowStream into a [futures::stream::TryStream] where every element is a crate::row::Row.

source

pub fn into_stream_as<T: DeserializeOwned>( self, handle: impl TransactionHandle ) -> impl TryStream<Ok = T, Error = Error>

Turns this RowStream into a [futures::stream::TryStream] where every row is converted into a T by calling crate::row::Row::to.

source

pub fn column_into_stream<'db, T: DeserializeOwned + 'db>( self, handle: impl TransactionHandle + 'db, column: &'db str ) -> impl TryStream<Ok = T, Error = Error> + 'db

Turns this RowStream into a [futures::stream::TryStream] where the value at the given column is converted into a T by calling crate::row::Row::get.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.