pub trait CondSync: Send + Sync { }
Expand description

A conditionally compiled trait indirection for Send + Sync bounds. This target makes it require Send + Sync.

Implementors§

source§

impl<S> CondSync for S
where S: Send + Sync,