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]
fn new<H, P>(hostname: H, port: P) -> Host where
H: Into<Cow<'static, str>>,
P: Into<Option<u16>>,
[src]
H: Into<Cow<'static, str>>,
P: Into<Option<u16>>,
Create a Host
header, providing the hostname and optional port.
fn hostname(&self) -> &str
[src]
Get the hostname, such as example.domain.
fn port(&self) -> Option<u16>
[src]
Get the optional port number.
Trait Implementations
impl Clone for Host
[src]
fn clone(&self) -> Host
[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 PartialEq for Host
[src]
fn eq(&self, __arg_0: &Host) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Host) -> bool
[src]
This method tests for !=
.
impl Debug for Host
[src]
impl Header for Host
[src]
fn header_name() -> &'static str
[src]
Returns the name of the header field this belongs to. Read more
fn parse_header(raw: &Raw) -> Result<Host>
[src]
Parse a header from a raw stream of bytes. Read more
fn fmt_header(&self, f: &mut Formatter) -> Result
[src]
Format a header to outgoing stream. Read more
impl Display for Host
[src]
fn fmt(&self, f: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more