[−][src]Trait hyper::net::NetworkListener
An abstraction to listen for connections on a certain port.
Associated Types
type Stream: NetworkStream + Send + Clone
The stream produced for each connection.
Required methods
fn accept(&mut self) -> Result<Self::Stream>
Returns an iterator of streams.
fn local_addr(&mut self) -> Result<SocketAddr>
Get the address this Listener ended up listening on.
Provided methods
ⓘImportant traits for NetworkConnections<'a, N>fn incoming(&mut self) -> NetworkConnections<Self>
ⓘImportant traits for NetworkConnections<'a, N>
Returns an iterator over incoming connections.
fn set_read_timeout(&mut self, _: Option<Duration>)
Sets the read timeout for all streams that are accepted
fn set_write_timeout(&mut self, _: Option<Duration>)
Sets the write timeout for all streams that are accepted