use crate::*;
/// Implements `AnySend` for types that are `Any` and `Send`.
///
/// This trait signifies that a type can be safely sent across thread boundaries.
/// Implements `AnySendClone` for types that are `Any`, `Send`, and `Clone`.
///
/// This trait signifies that a type can be safely sent across thread boundaries and cloned.
/// Implements `AnySync` for types that are `Any` and `Sync`.
///
/// This trait signifies that a type can be safely accessed from multiple threads concurrently.
/// Implements `AnySyncClone` for types that are `Any`, `Sync`, and `Clone`.
///
/// This trait signifies that a type can be safely accessed concurrently and cloned.
/// Implements `AnySendSync` for types that are `Any`, `Send`, and `Sync`.
///
/// This trait signifies that a type can be safely sent across thread boundaries and accessed concurrently.
/// Implements `AnySendSyncClone` for types that are `Any`, `Send`, `Sync`, and `Clone`.
///
/// This trait signifies that a type can be safely sent across thread boundaries, accessed concurrently, and cloned.