//! Marker traits for non-wasm32 platforms.
//!
//! Non-WASM platforms are assumed to be multi-threaded, so these traits require `Send` and `Sync` bounds.
/// Marker trait for types that may be `Send`, depending on platform.
/// Marker trait for types that may be `Sync`, depending on platform.
/// Marker trait for types that may be `Send + Sync`, depending on platform.
/// Marker trait for Future types that may be `Send`, depending on platform.