pub trait ProcessBase<IdMgr, Key, StoBase: ?Sized, SsysBase: ?Sized>: Any + Send + Sync where IdMgr: PrimaryIdManager, Key: Debug + Ord, StoBase: StoreBase<Id=IdMgr::Id>, SsysBase: SubsystemBase {
fn _update(&mut self, ids: &RwLock<IdMgr>, stores: &Ioc<Key, StoBase>, subsystems: &Ioc<Key, SsysBase>);
}
Required Methods
fn _update(&mut self, ids: &RwLock<IdMgr>, stores: &Ioc<Key, StoBase>, subsystems: &Ioc<Key, SsysBase>)
Implementors
impl<T, IdMgr, Key, StoBase: ?Sized, SsysBase: ?Sized> ProcessBase<IdMgr, Key, StoBase, SsysBase> for T where IdMgr: PrimaryIdManager, Key: Debug + Ord, StoBase: StoreBase<Id=IdMgr::Id>, SsysBase: SubsystemBase, T: for<'a> Process<'a, IdMgr, Key, StoBase, SsysBase>