http_type/arc_mutex/
type.rs

1use crate::*;
2
3/// 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>>;