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

An extension trait that enforces Sync only on native platforms.

Useful for writing cross-platform async code!

Implementors§

source§

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