Struct tokio_stream::wrappers::UnixListenerStream [−][src]
pub struct UnixListenerStream { /* fields omitted */ }
Expand description
A wrapper around UnixListener
that implements Stream
.
Implementations
Create a new UnixListenerStream
.
Get back the inner UnixListener
.
Trait Implementations
Performs the conversion.
Performs the conversion.
type Item = Result<UnixStream>
type Item = Result<UnixStream>
Values yielded by the stream.
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