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

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

Required Methods§

source

fn ghost_actor_dispatch(self, h: &mut H)

Process a dispatch event with a given GhostHandler.

Implementors§