Module websocket::server

source ·
Expand description

Provides an implementation of a WebSocket server

Modules§

  • The asynchronous implementation of a websocket server.
  • Provides an implementation of a WebSocket server
  • Allows you to take an existing request or stream of data and convert it into a WebSocket client.

Structs§

  • When a sever tries to accept a connection many things can go wrong.
  • Marker struct for a struct not being secure
  • Represents a WebSocket server which can work with either normal (non-secure) connections, or secure WebSocket connections.

Traits§

  • Trait that is implemented over NoSslAcceptor and SslAcceptor that serves as a generic bound to make a struct with. Used in the Server to specify impls based on whether the server is running over SSL or not.