pub struct AccessControlAllowMethods(_);
Expand description
Access-Control-Allow-Methods
header, part of
CORS
The Access-Control-Allow-Methods
header indicates, as part of the
response to a preflight request, which methods can be used during the
actual request.
ABNF
Access-Control-Allow-Methods: "Access-Control-Allow-Methods" ":" #Method
Example values
PUT, DELETE, XMODIFY
Examples
extern crate http;
use http::Method;
use headers::AccessControlAllowMethods;
let allow_methods = vec![Method::GET, Method::PUT]
.into_iter()
.collect::<AccessControlAllowMethods>();
Implementations§
Trait Implementations§
source§impl Clone for AccessControlAllowMethods
impl Clone for AccessControlAllowMethods
source§fn clone(&self) -> AccessControlAllowMethods
fn clone(&self) -> AccessControlAllowMethods
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 Debug for AccessControlAllowMethods
impl Debug for AccessControlAllowMethods
source§impl Header for AccessControlAllowMethods
impl Header for AccessControlAllowMethods
source§impl PartialEq<AccessControlAllowMethods> for AccessControlAllowMethods
impl PartialEq<AccessControlAllowMethods> for AccessControlAllowMethods
source§fn eq(&self, other: &AccessControlAllowMethods) -> bool
fn eq(&self, other: &AccessControlAllowMethods) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.