pub trait EntityActorProps: Clone + Send + Sync {
    type Msg: Message;

    fn props(&self, id: String) -> BoxActorProd<Self::Msg>;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors