pub trait StreamServiceFactory: Send + Clone + 'static {
    type NewService: NewService<TcpStream, Response = ()>;

    fn create(&self) -> Self::NewService;
}

Required Associated Types§

Required Methods§

Implementors§