Trait Message

Source
pub trait Message:
    Debug
    + Send
    + Sync
    + 'static { }
Expand description

Message collects the necessary requirements for messages that are deposited into mailboxes.

Implementors§

Source§

impl<M: Debug + Send + Sync + 'static> Message for M