Struct headers::AccessControlAllowCredentials
source · 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 headers::AccessControlAllowCredentials;
let allow_creds = 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 moresource§impl Header for AccessControlAllowCredentials
impl Header for AccessControlAllowCredentials
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 Eq for AccessControlAllowCredentials
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)