Enum hyper::header::ProtocolName
[−]
[src]
pub enum ProtocolName { Http, Tls, WebSocket, H2c, Unregistered(String), }
A protocol name used to identify a specific protocol. Names are case-sensitive
except for the WebSocket
value.
Variants
Http
HTTP
value, Hypertext Transfer Protocol
Tls
TLS
value, Transport Layer Security RFC2817
WebSocket
WebSocket
value, matched case insensitively,Web Socket Protocol
RFC6455
H2c
h2c
value, HTTP/2 over cleartext TCP
Unregistered(String)
Any other protocol name not known to hyper
Trait Implementations
impl Clone for ProtocolName
[src]
fn clone(&self) -> ProtocolName
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for ProtocolName
[src]
impl Eq for ProtocolName
[src]
impl PartialEq for ProtocolName
[src]
fn eq(&self, __arg_0: &ProtocolName) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &ProtocolName) -> bool
[src]
This method tests for !=
.
impl FromStr for ProtocolName
[src]
type Err = ()
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<ProtocolName, ()>
[src]
Parses a string s
to return a value of this type. Read more