Enum finchers_tungstenite::HandshakeErrorKind[][src]

pub enum HandshakeErrorKind {
    MissingHeader {
        name: &'static str,
    },
    InvalidHeader {
        name: &'static str,
    },
    InvalidSecWebSocketKey,
    InvalidSecWebSocketVersion,
}

Variants

Fields of MissingHeader

Fields of InvalidHeader

Trait Implementations

impl From<HandshakeErrorKind> for HandshakeError
[src]

Performs the conversion.

impl Debug for HandshakeErrorKind
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations