Trait Syncable

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

‘Short form’ for: ’static+Send+Sync

Implementors§

Source§

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