Trait HashMapModuleExtension

Source
pub trait HashMapModuleExtension<T, M> {
    // Required method
    fn insert_typeid(&mut self, value: M)
       where M: ModuleT<Context = T> + 'static,
             T: App;
}

Required Methods§

Source

fn insert_typeid(&mut self, value: M)
where M: ModuleT<Context = T> + 'static, T: App,

Implementors§

Source§

impl<T, M> HashMapModuleExtension<T, M> for AHashMap<TypeId, Module<T>>
where M: ModuleT<Context = T> + 'static, T: App,