Trait qecs_core::_ComponentStoreIter [] [src]

pub trait _ComponentStoreIter<'a>: _ComponentStore<'a> {
    type Iter: Iterator<Item = (Valid<'a, Self::Id>, &'a Self::_Value)> + 'a;
    type IterMut: Iterator<Item = (Valid<'a, Self::Id>, &'a mut Self::_Value)> + 'a;
}

Workaround for lack of HK-lifetimes.

Associated Types

Implementors