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

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]

pub fn new<S: Into<Cow<'static, str>>, H: Into<Cow<'static, str>>>(
    scheme: S,
    hostname: H,
    port: Option<u16>
) -> Origin
[src]

Creates a new Origin header.

pub fn null() -> Origin[src]

Creates a Null Origin header.

pub fn is_null(&self) -> bool[src]

Checks if Origin is Null.

pub fn scheme(&self) -> Option<&str>[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"));

pub fn host(&self) -> Option<&Host>[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 Clone for Origin[src]

impl Debug for Origin[src]

impl Display for Origin[src]

impl FromStr for Origin[src]

type Err = Error

The associated error which can be returned from parsing.

impl Header for Origin[src]

impl PartialEq<Origin> for Origin[src]

impl StructuralPartialEq for Origin[src]

Auto Trait Implementations

impl RefUnwindSafe for Origin

impl Send for Origin

impl Sync for Origin

impl Unpin for Origin

impl UnwindSafe for Origin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.