Trait qecs_core::_ComponentStore [] [src]

pub trait _ComponentStore<'a>: StoreBase {
    type _Value: Component;
    type Values: Iterator<Item = &'a Self::_Value> + 'a;
    type ValuesMut: Iterator<Item = &'a mut Self::_Value> + 'a;
}

Workaround for lack of HK-lifetimes.

Associated Types

Implementors