Message

Trait Message 

Source
pub trait Message:
    Send
    + Sync
    + 'static {
    type Result: Send + Sync + 'static;
}
Expand description

§Message

A message sent to an actor

Required Associated Types§

Source

type Result: Send + Sync + 'static

§Message::Result

The value that the a message handler returns to the caller

Implementors§