Struct actix_web::actix::actix::SyncContext[]

pub struct SyncContext<A> where
    A: Actor<Context = SyncContext<A>>, 
{ /* fields omitted */ }

Sync actor execution context

Trait Implementations

impl<A> ActorContext for SyncContext<A> where
    A: Actor<Context = SyncContext<A>>, 

Stop current actor. SyncContext creates and starts new actor.

Terminate actor execution. SyncContext creates and starts new actor.

Actor execution state

impl<A, M> ToEnvelope<A, M> for SyncContext<A> where
    A: Actor<Context = SyncContext<A>> + Handler<M>,
    M: Message + Send + 'static,
    <M as Message>::Result: Send

Pack message into suitable envelope

Auto Trait Implementations

impl<A> !Send for SyncContext<A>

impl<A> !Sync for SyncContext<A>