Trait actix::Message[][src]

pub trait Message {
    type Result: 'static;
}
Expand description

Represent message that can be handled by an actor.

Associated Types

The type of value that this message will resolved with if it is successful.

Implementations on Foreign Types

Allow users to use Arc<M> as a message without having to re-impl Message

Allow users to use Box<M> as a message without having to re-impl Message

Implementors