Struct reqwest::header::Host [] [src]

pub struct Host {
    pub hostname: String,
    pub port: Option<u16>,
}

The Host header.

HTTP/1.1 requires that all requests include a Host header, and so hyper client requests add one automatically.

Currently is just a String, but it should probably become a better type, like url::Host or something.

Examples

use hyper::header::{Headers, Host};

let mut headers = Headers::new();
headers.set(
    Host{
        hostname: "hyper.rs".to_owned(),
        port: None,
    }
);
use hyper::header::{Headers, Host};

let mut headers = Headers::new();
headers.set(
    Host{
        hostname: "hyper.rs".to_owned(),
        port: Some(8080),
    }
);

Fields

The hostname, such a example.domain.

An optional port number.

Trait Implementations

impl FromStr for Host
[src]

impl HeaderFormat for Host
[src]

Format a header to be output into a TcpStream. Read more

impl Display for Host
[src]

Formats the value using the given formatter. Read more

impl Header for Host
[src]

Returns the name of the header field this belongs to. Read more

Parse a header from a raw stream of bytes. Read more

impl Clone for Host
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq<Host> for Host
[src]

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

This method tests for !=.

impl Debug for Host
[src]

Formats the value using the given formatter.