pub struct Origin {
pub scheme: String,
pub host: Host,
}
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 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))
);
Fields§
§scheme: String
The scheme, such as http or https
host: Host
The host, such as Host{hostname: “hyper.rs”.to_owned(), port: None}
Implementations§
Trait Implementations§
source§impl HeaderFormat for Origin
impl HeaderFormat 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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)