http_type/arc_rwlock/
func.rs

1use crate::*;
2
3pub fn arc_rwlock<T>(data: T) -> ArcRwLock<T> {
4    Arc::new(RwLock::new(data))
5}