[][src]Enum websocket::server::upgrade::HyperIntoWsError

pub enum HyperIntoWsError {
    MethodNotGet,
    UnsupportedHttpVersion,
    UnsupportedWebsocketVersion,
    NoSecWsKeyHeader,
    NoWsUpgradeHeader,
    NoUpgradeHeader,
    NoWsConnectionHeader,
    NoConnectionHeader,
    Io(Error),
    Parsing(Error),
}

Errors that can occur when one tries to upgrade a connection to a websocket connection.

Variants

MethodNotGet

The HTTP method in a valid websocket upgrade request must be GET

UnsupportedHttpVersion

Currently HTTP 2 is not supported

UnsupportedWebsocketVersion

Currently only WebSocket13 is supported (RFC6455)

NoSecWsKeyHeader

A websocket upgrade request must contain a key

NoWsUpgradeHeader

A websocket upgrade request must ask to upgrade to a websocket

NoUpgradeHeader

A websocket upgrade request must contain an Upgrade header

NoWsConnectionHeader

A websocket upgrade request's Connection header must be Upgrade

NoConnectionHeader

A websocket upgrade request must contain a Connection header

Io(Error)

IO error from reading the underlying socket

Parsing(Error)

Error while parsing an incoming request

Trait Implementations

impl From<HyperIntoWsError> for WebSocketError[src]

impl From<Error> for HyperIntoWsError[src]

impl From<Error> for HyperIntoWsError[src]

impl From<HttpCodecError> for HyperIntoWsError[src]

impl Debug for HyperIntoWsError[src]

impl Display for HyperIntoWsError[src]

impl Error for HyperIntoWsError[src]

fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> Erased for T