[][src]Trait actix_web::actix::dev::EnvelopeProxy

pub trait EnvelopeProxy {
    type Actor: Actor;
    fn handle(
        &mut self,
        act: &mut Self::Actor,
        ctx: &mut <Self::Actor as Actor>::Context
    ); }

Associated Types

type Actor: Actor

Loading content...

Required methods

fn handle(
    &mut self,
    act: &mut Self::Actor,
    ctx: &mut <Self::Actor as Actor>::Context
)

handle message within new actor and context

Loading content...

Implementors

impl<A> EnvelopeProxy for Envelope<A> where
    A: Actor
[src]

type Actor = A

Loading content...