Skip to main content

Message

Trait Message 

Source
pub trait Message: Send + 'static { }
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: Send + 'static> Message for T