[][src]Trait maxim::actors::SyncAidPool

pub trait SyncAidPool: AidPool + Sync + Send + Clone + 'static { }

A helper trait that is simply an AidPool that can be passed between actors, i.e. it is Sync + Send + Clone + 'static. This is useful when you want to make a function generic over AidPool but you need to be able to give the poool to actor.

Implementors

impl<T: AidPool + Sync + Send + Clone + 'static> SyncAidPool for T[src]

Loading content...