Struct headers_ext::AccessControlAllowCredentials [−][src]
pub struct AccessControlAllowCredentials;
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
impl Clone for AccessControlAllowCredentials[src]
impl Clone for AccessControlAllowCredentialsfn clone(&self) -> AccessControlAllowCredentials[src]
fn clone(&self) -> AccessControlAllowCredentialsReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl PartialEq for AccessControlAllowCredentials[src]
impl PartialEq for AccessControlAllowCredentialsfn eq(&self, other: &AccessControlAllowCredentials) -> bool[src]
fn eq(&self, other: &AccessControlAllowCredentials) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl Eq for AccessControlAllowCredentials[src]
impl Eq for AccessControlAllowCredentialsimpl Debug for AccessControlAllowCredentials[src]
impl Debug for AccessControlAllowCredentialsfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Header for AccessControlAllowCredentials[src]
impl Header for AccessControlAllowCredentialsconst NAME: &'static HeaderName
NAME: &'static HeaderName = &::http::header::ACCESS_CONTROL_ALLOW_CREDENTIALS
The name of this header.
fn decode(values: &mut Values) -> Option<Self>[src]
fn decode(values: &mut Values) -> Option<Self>Decode this type from a HeaderValue.
fn encode(&self, values: &mut ToValues)[src]
fn encode(&self, values: &mut ToValues)Encode this type to a HeaderMap. Read more
Auto Trait Implementations
impl Send for AccessControlAllowCredentials
impl Send for AccessControlAllowCredentialsimpl Sync for AccessControlAllowCredentials
impl Sync for AccessControlAllowCredentials