Trait conniecs::component::ComponentManager [] [src]

pub trait ComponentManager: 'static {
    fn build_manager() -> Self;
}

This is the trait implemented for your struct containing all of your component lists. You should not try to implement this manually. Use #[derive(Components)] instead. See the module documentation for more information.

Required Methods

Implementors