Trait calx_ecs::Store [] [src]

pub trait Store {
    fn for_each_component<F>(&mut self, f: F)
    where
        F: FnMut(&mut AnyComponent)
; }

Operations for the internal component store object.

Required Methods

Perform an operation for each component container.

Implementors