pub trait StateStoreIter<T: IterItem = StateStoreKeyedRow>: Send {
// Required method
fn try_next(&mut self) -> impl StorageFuture<'_, Option<T::ItemRef<'_>>>;
}
Required Methods§
fn try_next(&mut self) -> impl StorageFuture<'_, Option<T::ItemRef<'_>>>
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.