Trait theatre::mailbox::Message[][src]

pub trait Message: Send {
    type Return: Send;
}

A Message is the interface to data that can be sent between actors. Messages and their return types must be Send so that the actors can be executed concurrently on separate threads.

Associated Types

Loading content...

Implementors

impl<A> Message for SuperviseActor<A> where
    A: 'static + Actor + Supervised
[src]

Loading content...