//! Definitions of Send and Sync used in the Koto runtime
//!//! When Koto is being used in a single-threaded context [KotoSend] and [KotoSync] are empty
//! traits implemented for all types.
#[cfg(feature ="rc")]modtraits{/// An empty trait for single-threaded contexts, implemented for all types
pubtraitKotoSend{}impl<T> KotoSend forT{}/// An empty trait for single-threaded contexts, implemented for all types
pubtraitKotoSync{}impl<T> KotoSync forT{}}#[cfg(not(feature ="rc"))]modtraits{pubuseSendas KotoSend;pubuseSyncas KotoSync;}pubusetraits::*;