1use crate::*;
23/// A type alias for a thread-safe, atomically reference-counted mutex.
4///
5/// This type is an alias for `Arc<Mutex<T>>`, providing a convenient way to
6/// manage shared mutable state across threads.
7pub type ArcMutex<T> = Arc<Mutex<T>>;