[][src]Trait ghost_actor::GhostChannelSender

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

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

Required methods

fn ghost_actor_channel_send(&self, event: E) -> GhostFuture<()>

Forward a GhostEvent along this channel.

Loading content...

Implementations on Foreign Types

impl<E: GhostEvent> GhostChannelSender<E> for Sender<E>[src]

Loading content...

Implementors

impl<E: GhostEvent> GhostChannelSender<E> for GhostSender<E>[src]

Loading content...