Struct hyper::header::common::host::HostExperimental [-]  [+] [src]

pub struct Host(pub String);

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.

Trait Implementations

impl Header for Host

fn header_name(_: Option<Host>) -> &'static str

fn parse_header(raw: &[Vec<u8>]) -> Option<Host>

fn fmt_header(&self, fmt: &mut Formatter) -> Result

Derived Implementations

impl Show for Host

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl PartialEq for Host

fn eq(&self, __arg_0: &Host) -> bool

fn ne(&self, __arg_0: &Host) -> bool

impl Clone for Host

fn clone(&self) -> Host

fn clone_from(&mut self, source: &Self)