Struct iron::headers::Origin [] [src]

pub struct Origin {
    pub scheme: String,
    pub host: Host,
}

The Origin header.

The Origin header is a version of the Referer header that is used for all HTTP fetches and POSTs whose CORS flag is set. This header is often used to inform recipients of the security context of where the request was initiated.

Following the spec, https://fetch.spec.whatwg.org/#origin-header, the value of this header is composed of a String (scheme), header::Host (host/port)

Examples

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

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

let mut headers = Headers::new();
headers.set(
    Origin::new("https", "wikipedia.org", Some(443))
);

Fields

scheme: String

The scheme, such as http or https

host: Host

The host, such as Host{hostname: "hyper.rs".to_owned(), port: None}

Methods

impl Origin

fn new<S, H>(scheme: S, hostname: H, port: Option<u16>) -> Origin where H: Into<String>, S: Into<String>

Trait Implementations

impl Debug for Origin

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

Formats the value using the given formatter.

impl Clone for Origin

fn clone(&self) -> Origin

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Header for Origin

fn header_name() -> &'static str

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

fn parse_header(raw: &[Vec<u8>]) -> Result<OriginError>

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

impl FromStr for Origin

type Err = Error

fn from_str(s: &str) -> Result<OriginError>

impl HeaderFormat for Origin

fn fmt_header(&self, f: &mut Formatter) -> Result<()Error>

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

impl PartialEq<Origin> for Origin

fn eq(&self, other: &Origin) -> bool

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

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.