pub type Sharded<T> = Arc<Vec<Mutex<T>>>;
A type alias for a thread-safe Vec of Mutexes.
pub struct Sharded<T> { /* private fields */ }