[][src]Trait meio::Link

pub trait Link<T> {
    fn link(&self) -> T;
}

Returns a Link to an Actor. Link is a convenient concept for creating wrappers for Address that provides methods instead of using message types directly. It allows also to use private message types opaquely.

Required methods

Gets a Link to an Actor.

Loading content...

Implementors

impl<T, A> Link<T> for Address<A> where
    T: From<Address<A>>,
    A: Actor
[src]

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

impl<T, I> Link<T> for InteractionRecipient<I> where
    T: From<InteractionRecipient<I>>,
    I: Interaction
[src]

Loading content...