Skip to main content

Message

Trait Message 

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

Helper trait for pipe-able transport message.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> Message for T
where T: Clone + Send + 'static,

Available on non-WebAssembly only.