Trait qecs_core::_ComponentStore [] [src]

pub trait _ComponentStore<'a>: StoreBase {
    type _Component: Component;
    type Components: Iterator<Item=&'a Self::_Component> + 'a;
    type ComponentsMut: Iterator<Item=&'a mut Self::_Component> + 'a;
}

Workaround for lack of HK-lifetimes.

Associated Types

type _Component: Component

type Components: Iterator<Item=&'a Self::_Component> + 'a

type ComponentsMut: Iterator<Item=&'a mut Self::_Component> + 'a

Implementors