pub trait Threadsafe: Send + Sync + 'static { }
A trait for types that implement Send and Sync and are 'static. This is just a ‘wrapper’ for these implementations.
Send
Sync
'static