Struct hyper::header::Protocol [] [src]

pub struct Protocol {
    pub name: ProtocolName,
    pub version: Option<String>,
}

Protocols that appear in the Upgrade header field

Fields

The protocol identifier

The optional version of the protocol, often in the format "DIGIT.DIGIT" (e.g.. "1.2")

Methods

impl Protocol
[src]

Creates a new Protocol with the given name and version

Trait Implementations

impl Clone for Protocol
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Protocol
[src]

Formats the value using the given formatter.

impl Eq for Protocol
[src]

impl PartialEq for Protocol
[src]

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

This method tests for !=.

impl FromStr for Protocol
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

impl Display for Protocol
[src]

Formats the value using the given formatter. Read more