Trait linera_base::task::Post

source ·
pub trait Post: Send + Sync { }
Expand description

Types that can be explicitly sent to a new thread. This differs from Send in that we can provide an explicit post step (e.g. postMessage on the Web).

Implementors§

source§

impl<T: Send + Sync> Post for T