pub type ArcRwLock<T> = Arc<RwLock<T>>;Expand description
A type alias for a thread-safe, atomically reference-counted read-write lock.
This type is an alias for Arc<RwLock<T>>, providing a convenient way to
manage shared mutable state with read-write locking capabilities across threads.
Aliased Typeยง
pub struct ArcRwLock<T> { /* private fields */ }