websocket_base::stream

Module sync

Source
Expand description

A collection of traits and implementations for synchronous streams.

Re-exports§

Structs§

  • A TCP stream between a local and a remote socket.
  • A stream managing a TLS session.

Enums§

Traits§

  • The ability access a borrow to an underlying TcpStream, so one can set options on the stream such as nonblocking.
  • a Stream that can also be used as a borrow to a TcpStream this is useful when you want to set TcpStream options on a Stream like nonblocking.
  • some streams can be split up into separate reading and writing components TcpStream is an example. This trait marks this ability so one can split up the client into two parts.