http_type/box_rwlock/
type.rs

1use crate::*;
2
3pub type BoxRwLock<T> = Box<RwLock<T>>;