[][src]Trait actix::Message

pub trait Message {
    type Result: 'static;
}

Represent message that can be handled by an actor.

Associated Types

type Result: 'static

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

Loading content...

Implementors

impl Message for SignalType
[src]

type Result = ()

impl Message for Connect
[src]

impl Message for ConnectAddr
[src]

impl Message for Resolve
[src]

impl Message for Signal
[src]

type Result = ()

impl Message for Subscribe
[src]

type Result = ()

impl Message for StopArbiter
[src]

type Result = ()

impl<A: Actor> Message for StartActor<A>
[src]

type Result = Addr<A>

impl<I: Send, E: Send> Message for Execute<I, E>
[src]

Execute message response

type Result = Result<I, E>

Loading content...