Trait 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