Expand description
TCP/UDP/Unix bindings (mostly Tokio re-exports).
Structsยง
- Describes the readiness state of an I/O resources.
- TcpListener
net
A TCP socket server, listening for connections. - TcpSocket
net
A TCP socket that has not yet been converted to aTcpStream
orTcpListener
. - TcpStream
net
A TCP stream between a local and a remote socket. - UdpSocket
net
A UDP socket. - UnixDatagramUnix and
net
An I/O object representing a Unix datagram socket. - UnixListenerUnix and
net
A Unix socket which can accept connections from other Unix sockets. - UnixStreamUnix and
net
A structure representing a connected Unix socket.