Skip to main content

SyncOutsideWasm

Trait SyncOutsideWasm 

Source
pub trait SyncOutsideWasm: Sync { }
Available on non-target_family=wasm only.
Expand description

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

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

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