Struct rocket::http::hyper::header::Host [−][src]
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
hostname: String
The hostname, such a example.domain.
port: Option<u16>
An optional port number.
Trait Implementations
impl Clone for Host[src]
impl Clone for Hostfn clone(&self) -> Host[src]
fn clone(&self) -> HostReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl FromStr for Host[src]
impl FromStr for Hosttype Err = Error
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<Host, Error>[src]
fn from_str(s: &str) -> Result<Host, Error>Parses a string s to return a value of this type. Read more
impl Debug for Host[src]
impl Debug for Hostfn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl Display for Host[src]
impl Display for Hostfn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl HeaderFormat for Host[src]
impl HeaderFormat for Hostfn fmt_header(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt_header(&self, f: &mut Formatter) -> Result<(), Error>Format a header to be output into a TcpStream. Read more
impl Header for Host[src]
impl Header for Hostfn header_name() -> &'static str[src]
fn header_name() -> &'static strReturns the name of the header field this belongs to. Read more
fn parse_header(raw: &[Vec<u8>]) -> Result<Host, Error>[src]
fn parse_header(raw: &[Vec<u8>]) -> Result<Host, Error>Parse a header from a raw stream of bytes. Read more
impl PartialEq<Host> for Host[src]
impl PartialEq<Host> for Hostfn eq(&self, other: &Host) -> bool[src]
fn eq(&self, other: &Host) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Host) -> bool[src]
fn ne(&self, other: &Host) -> boolThis method tests for !=.
impl From<Host> for Header<'static>[src]
impl From<Host> for Header<'static>