pub trait TableIter: Send {
// Required method
async fn next_row(&mut self) -> StorageResult<Option<OwnedRow>>;
}
Required Methods§
async fn next_row(&mut self) -> StorageResult<Option<OwnedRow>>
Object Safety§
This trait is not object safe.
pub trait TableIter: Send {
// Required method
async fn next_row(&mut self) -> StorageResult<Option<OwnedRow>>;
}