http_type/box_rwlock/
func.rs

1use crate::*;
2
3pub fn box_rwlock<T>(data: T) -> BoxRwLock<T> {
4    Box::new(RwLock::new(data))
5}