pub trait EnvelopeProxy {
    type Actor: Actor;

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

Required Associated Types

Required Methods

handle message within new actor and context

Implementors