Struct wactor::Link[][src]

pub struct Link<A: Actor> { /* fields omitted */ }

Link for responding to input messages.

Implementations

impl<A: Actor> Link<A>[src]

pub fn respond(&self, msg: A::Output) -> Result<(), ()>[src]

Respond with given output message. Fails if recipient has been dropped.

Auto Trait Implementations

impl<A> !RefUnwindSafe for Link<A>

impl<A> !Send for Link<A>

impl<A> !Sync for Link<A>

impl<A> Unpin for Link<A> where
    <A as Actor>::Input: Unpin,
    <A as Actor>::Output: Unpin

impl<A> UnwindSafe for Link<A> where
    <A as Actor>::Input: UnwindSafe,
    <A as Actor>::Output: UnwindSafe

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.