1use crate::*; 2 3#[inline] 4pub fn arc_rwlock<T>(data: T) -> ArcRwLock<T> { 5 Arc::new(RwLock::new(data)) 6}