1 2 3 4
use crate::*; /// A type alias for an `Arc<RwLock<T>>`. pub type ArcRwLock<T> = Arc<RwLock<T>>;