Enum rouille::websocket::WebsocketError [] [src]

pub enum WebsocketError {
    InvalidWebsocketRequest,
    WrongSubprotocol,
}

Error that can happen when attempting to start websocket.

Variants

The request does not match a websocket request.

The conditions are:

  • The method must be GET.
  • The HTTP version must be at least 1.1.
  • The request must include Host.
  • The Connection header must include websocket.
  • The Sec-WebSocket-Version header must be 13.
  • Must have a Sec-WebSocket-Key header.

The subprotocol passed to the function was not requested by the client.

Trait Implementations

impl Debug for WebsocketError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for WebsocketError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

The lower-level cause of this error, if any. Read more

impl Display for WebsocketError
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations