pub trait ThreadSafe: Sync + Send { }
Expand description

Convenience trait that combines Send and Sync

Implementors§

source§

impl<T> ThreadSafe for Twhere T: Sync + Send,