Struct riker::actor::Topic[][src]

pub struct Topic(_);

Topics allow channel subscribers to filter messages by interest

When publishing a message to a channel a Topic is provided.

Trait Implementations

impl Clone for Topic
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Topic
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Topic
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'a> From<&'a str> for Topic
[src]

Performs the conversion.

impl From<String> for Topic
[src]

Performs the conversion.

impl<'a, Msg: Message> From<&'a SystemEvent<Msg>> for Topic
[src]

Performs the conversion.

impl Eq for Topic
[src]

impl Hash for Topic
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl From<All> for Topic
[src]

Performs the conversion.

impl From<SysTopic> for Topic
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Topic

impl Sync for Topic