http_type/arc_mutex/
type.rs

1
2
3
use std::sync::{Arc, Mutex};

pub type ArcMutex<T> = Arc<Mutex<T>>;