Skip to main content

SendAlgebra

Trait SendAlgebra 

Source
pub trait SendAlgebra: Sized {
    // Required methods
    fn empty() -> Self;
    fn append(&mut self, other: Self);
}
Expand description

The operation required to accumulate sends across transitions.

Required Methods§

Source

fn empty() -> Self

Source

fn append(&mut self, other: Self)

Dyn Compatibility§

This trait is not dyn compatible.

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

Implementations on Foreign Types§

Source§

impl<T> SendAlgebra for Vec<T>

Source§

fn empty() -> Self

Source§

fn append(&mut self, other: Self)

Implementors§