Struct meio::handlers::Parcel[][src]

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

Parcel packs any message for an Actor for further processing that can be done later.

Also it useful to send multi-typed actions using ordinary channels.

Implementations

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

pub fn pack<I>(input: I) -> Self where
    A: InstantActionHandler<I>,
    I: InstantAction
[src]

Creates a new Parcel.

Auto Trait Implementations

impl<A> !RefUnwindSafe for Parcel<A>

impl<A> Send for Parcel<A>

impl<A> !Sync for Parcel<A>

impl<A> Unpin for Parcel<A>

impl<A> !UnwindSafe for Parcel<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, 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.