pub type Shared<T> = Arc<Mutex<T>>;
A type alias for an thread-safe Mutex.
pub struct Shared<T> { /* private fields */ }