Trait holochain_state::query::StoresIter[][src]

pub trait StoresIter<T> {
    fn iter(
        &mut self
    ) -> StateQueryResult<Box<dyn FallibleIterator<Item = T, Error = StateQueryError> + '_>>; }
Expand description

Each Stores implementation has its own custom way of iterating over itself, which this trait represents.

Required methods

Implementors