Trait ori_core::SendSync

source ·
pub trait SendSync { }
Expand description

A trait that is implemented for all types that implement Send + Sync.

Send + Sync is only required when the multithread feature is enabled.

Implementors§

source§

impl<T> SendSync for T