pub trait SendAlgebra: Sized {
// Required methods
fn empty() -> Self;
fn append(&mut self, other: Self);
// Provided methods
fn combine(self, other: Self) -> Self { ... }
fn send<Input, Path>(&mut self, input: Input)
where Self: SendInput<Input, Path> { ... }
fn sending<Input, Path>(input: Input) -> Self
where Self: SendInput<Input, Path> { ... }
}Expand description
The operation required to accumulate sends across transitions.
Required Methods§
Provided Methods§
fn combine(self, other: Self) -> Self
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.