pub trait MaybeSendSync: Send + Sync { }
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.
Send + Sync
sync