ThreadSafe

Trait ThreadSafe 

Source
pub trait ThreadSafe:
    Send
    + Sync
    + 'static { }
Expand description

Auto trait for types that implements Send + Sync + 'static.

Implementors§

Source§

impl<T> ThreadSafe for T
where T: Send + Sync + 'static,