Module actix::dev [] [src]

The actix prelude for library developers

The purpose of this module is to alleviate imports of many common actix traits by adding a glob import to the top of actix heavy modules:

use actix::dev::*;

Re-exports

pub use prelude::actix::*;
pub use prelude::*;

Structs

ContextImpl

Actor execution context impl

Request

Request is a Future which represents asynchronous message sending process.

SyncEnvelope
SyncRecipientRequest

SyncRecipientRequest is a Future which represents asynchronous message sending process.

UnsyncRecipientRequest

UnsyncRecipientRequest is a Future which represents asynchronous message sending process.

Traits

ActorAddress

Trait give access to actor's address

Destination
MessageDestination
MessageDestinationTransport
MessageRecipient
MessageResponse

Trait which defines message response

ResponseChannel

Trait defines message response channel

ToEnvelope

Converter trait, packs message to suitable envelope