ActorMessage

Trait ActorMessage 

Source
pub trait ActorMessage:
    Send
    + Sync
    + 'static { }
Expand description

Generic trait for messages that can be sent between actors

Implementors§

Source§

impl ActorMessage for Task

Available on non-WebAssembly only.
Source§

impl<M: Send + Sync + 'static> ActorMessage for SharedMessage<M>