Trait ThreadSafe

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

A thread-safe type

Implementors§

Source§

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