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

[]
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 Debug for HyperIntoWsError[src][+]

impl Display for HyperIntoWsError[src][+]

impl Error for HyperIntoWsError[src][+]

impl From<Error> for HyperIntoWsError[src][+]

impl From<Error> for HyperIntoWsError[src][+]

impl From<HttpCodecError> for HyperIntoWsError[src][+]

impl From<HyperIntoWsError> for WebSocketOtherError[src][+]

Auto Trait Implementations

impl !RefUnwindSafe for HyperIntoWsError

impl Send for HyperIntoWsError

impl Sync for HyperIntoWsError

impl Unpin for HyperIntoWsError

impl !UnwindSafe for HyperIntoWsError

Blanket Implementations

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

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

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

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[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> Typeable for T where
    T: Any
[+]