pub type DbIterator<'a, T> = Box<dyn Iterator<Item = Result<T, TypedStoreError>> + 'a>;
struct DbIterator<'a, T>(/* private fields */);