pub struct AccessControlAllowCredentials;
Expand description
Access-Control-Allow-Credentials
header, part of
CORS
The Access-Control-Allow-Credentials HTTP response header indicates whether the response to request can be exposed when the credentials flag is true. When part of the response to an preflight request it indicates that the actual request can be made with credentials. The Access-Control-Allow-Credentials HTTP header must match the following ABNF:
§ABNF
Access-Control-Allow-Credentials: "Access-Control-Allow-Credentials" ":" "true"
Since there is only one acceptable field value, the header struct does not accept
any values at all. Setting an empty AccessControlAllowCredentials
header is
sufficient. See the examples below.
§Example values
- “true”
§Examples
use hyper::header::{Headers, AccessControlAllowCredentials};
let mut headers = Headers::new();
headers.set(AccessControlAllowCredentials);
Trait Implementations§
source§impl Clone for AccessControlAllowCredentials
impl Clone for AccessControlAllowCredentials
source§fn clone(&self) -> AccessControlAllowCredentials
fn clone(&self) -> AccessControlAllowCredentials
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl From<AccessControlAllowCredentials> for Header<'static>
impl From<AccessControlAllowCredentials> for Header<'static>
§fn from(header: AccessControlAllowCredentials) -> Header<'static>
fn from(header: AccessControlAllowCredentials) -> Header<'static>
Converts to this type from the input type.
source§impl Header for AccessControlAllowCredentials
impl Header for AccessControlAllowCredentials
source§fn header_name() -> &'static str
fn header_name() -> &'static str
Returns the name of the header field this belongs to. Read more
source§fn parse_header(raw: &[Vec<u8>]) -> Result<AccessControlAllowCredentials, Error>
fn parse_header(raw: &[Vec<u8>]) -> Result<AccessControlAllowCredentials, Error>
Parse a header from a raw stream of bytes. Read more
source§impl PartialEq for AccessControlAllowCredentials
impl PartialEq for AccessControlAllowCredentials
source§fn eq(&self, other: &AccessControlAllowCredentials) -> bool
fn eq(&self, other: &AccessControlAllowCredentials) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AccessControlAllowCredentials
Auto Trait Implementations§
impl Freeze for AccessControlAllowCredentials
impl RefUnwindSafe for AccessControlAllowCredentials
impl Send for AccessControlAllowCredentials
impl Sync for AccessControlAllowCredentials
impl Unpin for AccessControlAllowCredentials
impl UnwindSafe for AccessControlAllowCredentials
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
)