pub trait IntoStreamHandler {
    type Stream: Stream;
    type Handler: StreamHandler;

    fn into_handler(self) -> Self::Handler;
}
Available on crate feature feature only.

Required Associated Types

Required Methods

Implementors