Type Alias DbIter

Source
pub type DbIter<T> = Box<dyn Iterator<Item = Result<T>> + Send + Sync + 'static>;
Expand description

A fallible but owned iterator over the entries in a store.

Aliased Typeยง

struct DbIter<T>(/* private fields */);