datagram |
|
|
listener.rs |
connection failed |
7896 |
mod.rs |
Unix specific network types. |
905 |
pipe.rs |
Unix pipe types. |
51731 |
socket.rs |
|
8996 |
socketaddr.rs |
|
832 |
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 |
|
39103 |
ucred.rs |
|
9308 |