Skip to main content

Message

Trait Message 

Source
pub trait Message: Send + 'static { }
Available on crate feature actor only.
Expand description

A message that can cross into an actor cluster.

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

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