Trait qecs_core::_ComponentStoreIter [] [src]

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

Workaround for lack of HK-lifetimes.

Associated Types

type Iter: Iterator<Item=(Valid<'a, Self::Id>, &'a Self::_Component)> + 'a

type IterMut: Iterator<Item=(Valid<'a, Self::Id>, &'a mut Self::_Component)> + 'a

Implementors