Skip to main content

MaybeSendSync

Trait MaybeSendSync 

Source
pub trait MaybeSendSync: Send + Sync { }
Expand description

Send + Sync on native targets; no requirement on wasm32.

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl<T: ?Sized + Send + Sync> MaybeSendSync for T

Available on non-WebAssembly only.