Struct hyper::header::Origin [] [src]

pub struct Origin(_);

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))
);

Methods

impl Origin
[src]

[src]

Creates a new Origin header.

[src]

Creates a Null Origin header.

[src]

Checks if Origin is Null.

[src]

The scheme, such as http or https.

use hyper::header::Origin;
let origin = Origin::new("https", "foo.com", Some(443));
assert_eq!(origin.scheme(), Some("https"));

[src]

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

use hyper::header::{Origin,Host};
let origin = Origin::new("https", "foo.com", Some(443));
assert_eq!(origin.host(), Some(&Host::new("foo.com", Some(443))));

Trait Implementations

impl PartialEq for Origin
[src]

[src]

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

[src]

This method tests for !=.

impl Clone for Origin
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Origin
[src]

[src]

Formats the value using the given formatter. Read more

impl Header for Origin
[src]

[src]

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

[src]

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

[src]

Format a header to outgoing stream. Read more

impl FromStr for Origin
[src]

The associated error which can be returned from parsing.

[src]

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

impl Display for Origin
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Origin

impl Sync for Origin