pub trait MaybeSendSync: Send + Sync { }
Expand description

A trait that allows to specify Send + Sync bounds that are only required when the sync Cargo feature is enabled. Without the Cargo feature, this is an empty bound.

Implementors§