Name Description Size Coverage
datagram -
listener.rs connection failed 9007 -
mod.rs Unix specific network types. 905 -
pipe.rs Unix pipe types. 51731 -
socket.rs 8996 -
socketaddr.rs 1292 -
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. 12304 -
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 40263 -
ucred.rs 9417 -