pub trait SendOutsideWasm: Send { }
Available on non-WebAssembly only.
Expand description

Alias for Send on non-wasm, empty trait (implemented by everything) on wasm.

Implementors§

source§

impl<T> SendOutsideWasm for T
where T: Send,