Trait meio::linkage::ActionRecipient[][src]

pub trait ActionRecipient<T: Action>: Debug + Send + 'static {
    fn act(&mut self, msg: T) -> Result<(), Error>;
}
Expand description

Abstract Address to the Actor that can handle a specific message type.

Required methods

Send an Action to an Actor.

Implementors