Expand description
Unix Domain Sockets for Tokio.
Note: This crate is deprecated in tokio 0.2.x and has been moved into
tokio::netbehind theudsfeature flag.
This crate provides APIs for using Unix Domain Sockets with Tokio.
Structsยง
- Connect
Future - Future returned by
UnixStream::connectwhich will resolve to aUnixStreamwhen the stream is connected. - Incoming
- Stream of listeners
- Recv
Dgram - A future for receiving datagrams from a Unix datagram socket.
- Send
Dgram - A future for writing a buffer to a Unix datagram socket.
- UCred
- Credentials of a process
- Unix
Datagram - An I/O object representing a Unix datagram socket.
- Unix
Datagram Framed - A unified
StreamandSinkinterface to an underlyingUnixDatagram, using theEncoderandDecodertraits to encode and decode frames. - Unix
Listener - A Unix socket which can accept connections from other Unix sockets.
- Unix
Stream - A structure representing a connected Unix socket.