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

An item that can handle an incoming GhostEvent.

Provided Methods§

Process a dispatch event with this GhostHandler.

Implementors§