Trait actix_net::server::ServiceFactory[][src]

pub trait ServiceFactory: Send + Clone + 'static {
    type NewService: NewService<Request = ServerMessage, Response = ()>;
    fn create(&self) -> Self::NewService;
}

Associated Types

Required Methods

Implementors