1use crate::*; 2 3#[derive(Clone, Data)] 4pub struct ServerConfig { 5 pub(super) host: String, 6 pub(super) port: usize, 7 pub(super) buffer_size: usize, 8 pub(super) error_handle: ArcErrorHandle, 9}