tcplane/server/struct.rs
1use crate::*;
2
3/// Server structure.
4///
5/// Contains the core configuration and function list of the server.
6#[derive(Clone)]
7pub struct Server {
8 /// Server configuration containing all necessary settings.
9 pub(crate) config: ArcRwLockServerConfig,
10 /// Function list containing all supported processing functions.
11 pub(crate) func_list: FuncListArcLock,
12}