http_type/rc_rwlock/
type.rs

1use crate::*;
2
3/// A type alias for a reference-counted, read-write locked value.
4///
5/// This alias simplifies the use of `Rc<RwLock<T>>`, providing a convenient way to manage shared mutable data across multiple owners.
6pub type RcRwLock<T> = Rc<RwLock<T>>;