[][src]Module tokio::net::tcp

This is supported on feature="tcp" only.

TCP utility types

Structs

Incomingfeature="tcp"

Stream returned by the TcpListener::incoming function representing the stream of sockets received from a listener.

OwnedReadHalffeature="tcp"

Owned read half of a TcpStream, created by into_split.

OwnedWriteHalffeature="tcp"

Owned write half of a TcpStream, created by into_split.

ReadHalffeature="tcp"

Read half of a TcpStream, created by split.

ReuniteErrorfeature="tcp"

Error indicating two halves were not from the same socket, and thus could not be reunited.

WriteHalffeature="tcp"

Write half of a TcpStream, created by split.