Struct hyper::header::Host [] [src]

pub struct Host { /* fields omitted */ }

The Host header.

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

Examples

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

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

let mut headers = Headers::new();
headers.set(
    // In Rust 1.12+
    // Host::new("hyper.rs", 8080)
    Host::new("hyper.rs", Some(8080))
);

Methods

impl Host
[src]

[src]

Create a Host header, providing the hostname and optional port.

[src]

Get the hostname, such as example.domain.

[src]

Get the optional port number.

Trait Implementations

impl Clone for Host
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Host
[src]

[src]

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

[src]

This method tests for !=.

impl Debug for Host
[src]

[src]

Formats the value using the given formatter.

impl Header for Host
[src]

[src]

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

[src]

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

[src]

Format a header to outgoing stream. Read more

impl Display for Host
[src]

[src]

Formats the value using the given formatter. Read more

impl FromStr for Host
[src]

The associated error which can be returned from parsing.

[src]

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