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