Trait ghost_actor::GhostHandler[][src]

pub trait GhostHandler<D: GhostDispatch<Self>>: 'static + Send + Sized {
    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