Struct actix::WeakRecipient[][src]

pub struct WeakRecipient<M: Message> where
    M: Message + Send,
    M::Result: Send
{ /* fields omitted */ }

A weakly referenced counterpart to Recipient<M>

Implementations

impl<M> WeakRecipient<M> where
    M: Message + Send,
    M::Result: Send
[src]

pub fn upgrade(&self) -> Option<Recipient<M>>[src]

Attempts to upgrade the WeakRecipient<M> pointer to an Recipient<M>, similar to WeakAddr<A>

Trait Implementations

impl<M> Debug for WeakRecipient<M> where
    M: Message + Send,
    M::Result: Send
[src]

impl<A: Actor, M: Message + Send + 'static> Into<WeakRecipient<M>> for Addr<A> where
    A: Handler<M>,
    M::Result: Send,
    A::Context: ToEnvelope<A, M>, 
[src]

impl<A: Actor, M: Message + Send + 'static> Into<WeakRecipient<M>> for WeakAddr<A> where
    A: Handler<M>,
    M::Result: Send,
    A::Context: ToEnvelope<A, M>, 
[src]

Auto Trait Implementations

impl<M> !RefUnwindSafe for WeakRecipient<M>

impl<M> Send for WeakRecipient<M>

impl<M> Sync for WeakRecipient<M>

impl<M> Unpin for WeakRecipient<M>

impl<M> !UnwindSafe for WeakRecipient<M>

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.