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 POST
s 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]
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.
fn null() -> Origin
[src]
Creates a Null
Origin
header.
fn is_null(&self) -> bool
[src]
Checks if Origin
is Null
.
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"));
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 PartialEq for Origin
[src]
fn eq(&self, __arg_0: &Origin) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Origin) -> bool
[src]
This method tests for !=
.
impl Clone for Origin
[src]
fn clone(&self) -> Origin
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for Origin
[src]
impl Header for Origin
[src]
fn header_name() -> &'static str
[src]
Returns the name of the header field this belongs to. Read more
fn parse_header(raw: &Raw) -> Result<Origin>
[src]
Parse a header from a raw stream of bytes. Read more
fn fmt_header(&self, f: &mut Formatter) -> Result
[src]
Format a header to outgoing stream. Read more
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]
Parses a string s
to return a value of this type. Read more