http_type/arc_rwlock/
type.rs

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

pub type ArcRwLock<T> = Arc<RwLock<T>>;