settings::message::base

Trait Address

Source
pub trait Address:
    Copy
    + Debug
    + Eq
    + Hash
    + Unpin { }
Expand description

Trait alias for types of data that can be used as an address in a MessageHub.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T: Copy + Debug + Eq + Hash + Unpin> Address for T