Trait TableIter

Source
pub trait TableIter: Send {
    // Required method
    async fn next_row(&mut self) -> StorageResult<Option<OwnedRow>>;
}

Required Methods§

Source

async fn next_row(&mut self) -> StorageResult<Option<OwnedRow>>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<S: Stream<Item = StorageResult<OwnedRow>> + Send + Unpin> TableIter for S

The row iterator of the storage table. The wrapper of stream item StorageResult<OwnedRow> if pk is not persisted.