[][src]Trait dotrix_ecs::Archetype

pub trait Archetype {
    fn store(self, container: &mut Container);
fn map(container: &mut Container); }

Trait definition of Entities with the same set of components

Required methods

fn store(self, container: &mut Container)

fn map(container: &mut Container)

Loading content...

Implementations on Foreign Types

impl<A, B, C, D> Archetype for (A, B, C, D) where
    A: Component,
    B: Component,
    C: Component,
    D: Component
[src]

impl<B, C, D> Archetype for (B, C, D) where
    B: Component,
    C: Component,
    D: Component
[src]

impl<C, D> Archetype for (C, D) where
    C: Component,
    D: Component
[src]

impl<D> Archetype for (D,) where
    D: Component
[src]

Loading content...

Implementors

Loading content...