Enum iron::headers::ProtocolName [] [src]

pub enum ProtocolName {
    Http,
    Tls,
    WebSocket,
    H2c,
    Unregistered(String),
}

A protocol name used to identify a spefic protocol. Names are case-sensitive except for the WebSocket value.

Variants

HTTP value, Hypertext Transfer Protocol

TLS value, Transport Layer Security RFC2817

WebSocket value, matched case insensitively,Web Socket Protocol RFC6455

h2c value, HTTP/2 over cleartext TCP

Any other protocol name not known to hyper

Trait Implementations

impl PartialEq<ProtocolName> for ProtocolName

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for ProtocolName

impl Debug for ProtocolName

Formats the value using the given formatter.

impl Clone for ProtocolName

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl FromStr for ProtocolName

impl Display for ProtocolName

Formats the value using the given formatter.