Struct headers::AccessControlAllowMethods
source · [−]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
sourceimpl Clone for AccessControlAllowMethods
impl Clone for AccessControlAllowMethods
sourcefn clone(&self) -> AccessControlAllowMethods
fn clone(&self) -> AccessControlAllowMethods
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AccessControlAllowMethods
impl Debug for AccessControlAllowMethods
sourceimpl FromIterator<Method> for AccessControlAllowMethods
impl FromIterator<Method> for AccessControlAllowMethods
sourcefn from_iter<I>(iter: I) -> Self where
I: IntoIterator<Item = Method>,
fn from_iter<I>(iter: I) -> Self where
I: IntoIterator<Item = Method>,
Creates a value from an iterator. Read more
sourceimpl Header for AccessControlAllowMethods
impl Header for AccessControlAllowMethods
sourcefn name() -> &'static HeaderName
fn name() -> &'static HeaderName
The name of this header.
sourceimpl PartialEq<AccessControlAllowMethods> for AccessControlAllowMethods
impl PartialEq<AccessControlAllowMethods> for AccessControlAllowMethods
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &AccessControlAllowMethods) -> bool
fn ne(&self, other: &AccessControlAllowMethods) -> bool
This method tests for !=
.
impl StructuralPartialEq for AccessControlAllowMethods
Auto Trait Implementations
impl RefUnwindSafe for AccessControlAllowMethods
impl Send for AccessControlAllowMethods
impl Sync for AccessControlAllowMethods
impl Unpin for AccessControlAllowMethods
impl UnwindSafe for AccessControlAllowMethods
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more