MaybeSync

Trait MaybeSync 

Source
pub trait MaybeSync: Sync { }
Expand description

A trait that is Sync on native targets and a no-op on WASM.

Implementors§

Source§

impl<T: Sync> MaybeSync for T

Available on non-target_family=wasm only.