Trait ThreadSafe

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

A trait which signifies a thread safe type. Can be used in a static.

Implementors§

Source§

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