Struct tokio_stream::wrappers::TcpListenerStream [−][src]
pub struct TcpListenerStream { /* fields omitted */ }
Expand description
A wrapper around TcpListener
that implements Stream
.
Implementations
Create a new TcpListenerStream
.
Get back the inner TcpListener
.
Trait Implementations
Performs the conversion.
Performs the conversion.
Attempt to pull out the next value of this stream, registering the
current task for wakeup if the value is not yet available, and returning
None
if the stream is exhausted. Read more