[−][src]Struct hyper::header::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]
scheme: S,
hostname: H,
port: Option<u16>
) -> Origin
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.
fn from_str(s: &str) -> Result<Origin>[src]
impl Header for Origin[src]
fn header_name() -> &'static str[src]
fn parse_header(raw: &Raw) -> Result<Origin>[src]
fn fmt_header(&self, f: &mut Formatter) -> Result[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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,