[][src]Struct movie::Handle

pub struct Handle<T, TX> where
    T: JoinableHandle
{ pub join_handle: T, pub tx: Sender<TX>, pub kill: Sender<()>, }

Handle returned by Actor::start(). Generic version.

Fields

join_handle: T

The underlying handle to process, thread, task, future, etc.

tx: Sender<TX>

Sender of channel used to send messages to an actor.

kill: Sender<()>

Sender of channel used to ask an actor to stop.

kill is used internally, use stop() instead.

Methods

impl<T, TX> Handle<T, TX> where
    T: JoinableHandle
[src]

pub fn send(&self, msg: TX)[src]

Wrapper on tx.send(msg).unwrap().

pub fn stop(self)[src]

Asks the actor to stop and waits (blocking) for it to stop.

Auto Trait Implementations

impl<T, TX> Send for Handle<T, TX> where
    T: Send,
    TX: Send

impl<T, TX> !Sync for Handle<T, TX>

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.