[][src]Struct meio::recipients::ActionRecipient

pub struct ActionRecipient<I> { /* fields omitted */ }

Actor-agnosic ActionPerformer.

Trait Implementations

impl<I> ActionPerformer<I> for ActionRecipient<I> where
    I: Action
[src]

impl<I> Clone for ActionRecipient<I>[src]

impl<I> Debug for ActionRecipient<I>[src]

impl<A, I> From<Address<A>> for ActionRecipient<I> where
    A: Actor,
    A: ActionHandler<I>,
    I: Action
[src]

impl<T, I> Link<T> for ActionRecipient<I> where
    T: From<ActionRecipient<I>>,
    I: Action
[src]

Auto Trait Implementations

impl<I> !RefUnwindSafe for ActionRecipient<I>

impl<I> Send for ActionRecipient<I>

impl<I> !Sync for ActionRecipient<I>

impl<I> Unpin for ActionRecipient<I>

impl<I> !UnwindSafe for ActionRecipient<I>

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,