[][src]Struct coerce_rt::actor::scheduler::RegisterActor

pub struct RegisterActor<A: Actor>(pub A, pub ActorType, pub Sender<bool>)
where
    A: 'static + Sync + Send
;

Trait Implementations

impl<A: Actor> Handler<RegisterActor<A>> for ActorScheduler where
    A: 'static + Sync + Send
[src]

impl<A: Actor> Message for RegisterActor<A> where
    A: 'static + Sync + Send
[src]

type Result = ActorRef<A>

Auto Trait Implementations

impl<A> !RefUnwindSafe for RegisterActor<A>

impl<A> Send for RegisterActor<A>

impl<A> Sync for RegisterActor<A>

impl<A> Unpin for RegisterActor<A> where
    A: Unpin

impl<A> !UnwindSafe for RegisterActor<A>

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> Message for T where
    T: TimerTick + 'static + Sync + Send
[src]

type Result = ()

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,