use Any;
use Arc;
/// A read-only block of data that can be shared between threads.
///
/// The `Props` struct allows for storing any type of data that implements
/// `Any`, `Send`, and `Sync`. The data is stored in an `Arc`, making it
/// safe for shared read-only access across multiple threads.