Name Description Size
datagram
listener.rs connection failed 7800
mod.rs Unix specific network types. 881
pipe.rs Unix pipe types. 42847
socketaddr.rs 822
split.rs `UnixStream` split support. A `UnixStream` can be split into a read half and a write half with `UnixStream::split`. The read half implements `AsyncRead` while the write half implements `AsyncWrite`. Compared to the generic split of `AsyncRead + AsyncWrite`, this specialized split has no associated overhead and enforces all invariants at the type level. 12300
split_owned.rs `UnixStream` owned split support. A `UnixStream` can be split into an `OwnedReadHalf` and a `OwnedWriteHalf` with the `UnixStream::into_split` method. `OwnedReadHalf` implements `AsyncRead` while `OwnedWriteHalf` implements `AsyncWrite`. Compared to the generic split of `AsyncRead + AsyncWrite`, this specialized split has no associated overhead and enforces all invariants at the type level. 15327
stream.rs 38511
ucred.rs 8658