Expand description
Asynchronous networking abstractions.
Structsยง
- A stream which resolves to an
io::Result<(TcpStream, SocketAddr)>
. - A future which resolves to an
io::Result<(TcpListener, TcpStream, SocketAddr)>
. - An I/O object representing a datagram socket.
- A type which can be used for receiving IO events for a file descriptor.
- Future returned by
DatagramSocket::recv_from()
. - Future returned by
DatagramSocket::send_to()
. - Future returned by
DatagramSocket::send_to_vectored()
. - A future which resolves to a connected
TcpStream
. - An I/O object representing a TCP socket listening for incoming connections.
- A single TCP connection.
- Future returned by
UdpSocket::recv_from()
. - An I/O object representing a UDP socket.