Struct rustful::header::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

The scheme, such as http or https

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

Methods

impl Origin
[src]

Creates a new Origin header.

Trait Implementations

impl Clone for Origin
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl FromStr for Origin
[src]

The associated error which can be returned from parsing.

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

impl Debug for Origin
[src]

Formats the value using the given formatter. Read more

impl HeaderFormat for Origin
[src]

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

impl Header for Origin
[src]

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

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

impl PartialEq<Origin> for Origin
[src]

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

This method tests for !=.

impl Display for Origin
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Origin

impl Sync for Origin