1use crate::*; 2 3/// A type alias for a heap-allocated read-write lock. 4/// 5/// This type is an alias for `Box<RwLock<T>>`, providing a way to manage 6/// a read-write lock allocated on the heap. 7pub type BoxRwLock<T> = Box<RwLock<T>>;