pub trait GhostHandler<D>: 'static + Send + Sizedwhere
    D: GhostDispatch<Self>,{
    // Provided method
    fn ghost_actor_dispatch(&mut self, d: D) { ... }
}
Expand description

An item that can handle an incoming GhostEvent.

Provided Methods§

source

fn ghost_actor_dispatch(&mut self, d: D)

Process a dispatch event with this GhostHandler.

Implementors§