Trait ghost_actor::GhostChannelSender[][src]

pub trait GhostChannelSender<E: GhostEvent>: 'static + Send + Sync + Sized + Clone {
    fn ghost_actor_channel_send(&self, event: E) -> GhostFuture<()>;
}
Expand description

Indicates an item is the Sender side of a channel that can forward/handle GhostEvents.

Required methods

Forward a GhostEvent along this channel.

Implementations on Foreign Types

Implementors