Trait ghost_actor::GhostDispatch[][src]

pub trait GhostDispatch<H: GhostHandler<Self>>: GhostEvent {
    fn ghost_actor_dispatch(self, h: &mut H);
}
Expand description

An upgraded GhostEvent that knows how to dispatch to a handler.

Required methods

Process a dispatch event with a given GhostHandler.

Implementors