1use crate::*; 2 3pub type BoxFunc = Box<dyn Func + Send + 'static>; 4pub type ArcRwlockVecBoxFunc = ArcRwLock<Vec<BoxFunc>>;