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