[][src]Struct ghost_actor::actor_builder::GhostActorBuilder

pub struct GhostActorBuilder<H: GhostControlHandler> { /* fields omitted */ }

Construct a GhostActor by specifying which GhostEvents it handles. GhostSenders can also attach additional senders post-spawn, if the handler supports the given GhostEvent.

Implementations

impl<H: GhostControlHandler> GhostActorBuilder<H>[src]

pub fn new() -> Self[src]

Start here to create a new GhostActor task.

pub fn channel_factory(&self) -> &GhostActorChannelFactory<H>[src]

To add GhostSenders to the new actor, you need access to the channel factory. Pro Tip: You can cheaply clone this factory and keep it around for later : )

pub fn spawn(self, handler: H) -> GhostFuture<()>[src]

Pass in your handler item and start the actor task loop.

Trait Implementations

impl<H: GhostControlHandler> Default for GhostActorBuilder<H>[src]

Auto Trait Implementations

impl<H> !RefUnwindSafe for GhostActorBuilder<H>

impl<H> Send for GhostActorBuilder<H>

impl<H> Sync for GhostActorBuilder<H>

impl<H> Unpin for GhostActorBuilder<H>

impl<H> !UnwindSafe for GhostActorBuilder<H>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.