pub trait IService: IServerObject {
    fn get_name() -> ServiceName;
    fn get_max_sesssions() -> i32;
}

Required Methods

Implementors