http_type/arc_mutex/
type.rs

1use std::sync::{Arc, Mutex};
2
3pub type ArcMutex<T> = Arc<Mutex<T>>;