http_type/arc_rwlock/type.rs
1use crate::*;
2
3/// A type alias for a thread-safe, atomically reference-counted read-write lock.
4///
5/// This type is an alias for `Arc<RwLock<T>>`, providing a convenient way to
6/// manage shared mutable state with read-write locking capabilities across threads.
7pub type ArcRwLock<T> = Arc<RwLock<T>>;