pub trait SyncOutsideWasm: Sync { }
Available on non-WebAssembly only.
Expand description

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

Implementors§

source§

impl<T> SyncOutsideWasm for T
where T: Sync,