pub trait SendAlgebra: Sized {
// Required methods
fn empty() -> Self;
fn append(&mut self, other: Self);
}Expand description
The monoid required to accumulate sends across transitions.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".