[][src]Struct riker::actor::Channel

pub struct Channel<Msg: Message> { /* fields omitted */ }

A specialized actor for providing Publish/Subscribe capabilities for user level messages

Trait Implementations

impl<Msg> Actor for Channel<Msg> where
    Msg: Message
[src]

type Msg = ChannelMsg<Msg>

impl<Msg: Message> Default for Channel<Msg>[src]

impl<Msg> Receive<ChannelMsg<Msg>> for Channel<Msg> where
    Msg: Message
[src]

type Msg = ChannelMsg<Msg>

impl<Msg> Receive<Publish<Msg>> for Channel<Msg> where
    Msg: Message
[src]

type Msg = ChannelMsg<Msg>

impl<Msg> Receive<Subscribe<Msg>> for Channel<Msg> where
    Msg: Message
[src]

type Msg = ChannelMsg<Msg>

impl<Msg> Receive<Unsubscribe<Msg>> for Channel<Msg> where
    Msg: Message
[src]

type Msg = ChannelMsg<Msg>

impl<Msg> Receive<UnsubscribeAll<Msg>> for Channel<Msg> where
    Msg: Message
[src]

type Msg = ChannelMsg<Msg>

Auto Trait Implementations

impl<Msg> !RefUnwindSafe for Channel<Msg>

impl<Msg> Send for Channel<Msg>

impl<Msg> !Sync for Channel<Msg>

impl<Msg> Unpin for Channel<Msg>

impl<Msg> !UnwindSafe for Channel<Msg>

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,