1use crate::*; 2 3#[derive(Clone, Data)] 4pub struct Server { 5 pub(super) cfg: ArcRwLockServerConfig, 6 pub(super) func_list: FuncListArcLock, 7 pub(super) tmp: ArcRwLock<Tmp>, 8}