pub struct Origin(/* private fields */);
Expand description
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 hyperx::header::{Origin, TypedHeaders};
let mut headers = http::HeaderMap::new();
headers.encode(
&Origin::new("http", "hyper.rs", None)
);
use hyperx::header::{Origin, TypedHeaders};
let mut headers = http::HeaderMap::new();
headers.encode(
&Origin::new("https", "wikipedia.org", Some(443))
);
Implementations§
Source§impl Origin
impl Origin
Sourcepub fn new<S: Into<Cow<'static, str>>, H: Into<Cow<'static, str>>>(
scheme: S,
hostname: H,
port: Option<u16>,
) -> Origin
pub fn new<S: Into<Cow<'static, str>>, H: Into<Cow<'static, str>>>( scheme: S, hostname: H, port: Option<u16>, ) -> Origin
Creates a new Origin
header.
Trait Implementations§
Source§impl Header for Origin
impl Header for Origin
Source§impl StandardHeader for Origin
impl StandardHeader for Origin
Source§fn http_header_name() -> HeaderName
fn http_header_name() -> HeaderName
The
HeaderName
from the http crate for this header.impl StructuralPartialEq for Origin
Auto Trait Implementations§
impl Freeze for Origin
impl RefUnwindSafe for Origin
impl Send for Origin
impl Sync for Origin
impl Unpin for Origin
impl UnwindSafe for Origin
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more