Struct viz_core::headers::AccessControlRequestMethod
source · [−]pub struct AccessControlRequestMethod(_);
Expand description
Access-Control-Request-Method
header, part of
CORS
The Access-Control-Request-Method
header indicates which method will be
used in the actual request as part of the preflight request.
ABNF
Access-Control-Request-Method: \"Access-Control-Request-Method\" \":\" Method
Example values
GET
Examples
extern crate http;
use headers::AccessControlRequestMethod;
use http::Method;
let req_method = AccessControlRequestMethod::from(Method::GET);
Trait Implementations
sourceimpl Clone for AccessControlRequestMethod
impl Clone for AccessControlRequestMethod
sourcefn clone(&self) -> AccessControlRequestMethod
fn clone(&self) -> AccessControlRequestMethod
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 AccessControlRequestMethod
impl Debug for AccessControlRequestMethod
sourceimpl From<AccessControlRequestMethod> for Method
impl From<AccessControlRequestMethod> for Method
sourcefn from(method: AccessControlRequestMethod) -> Method
fn from(method: AccessControlRequestMethod) -> Method
Converts to this type from the input type.
sourceimpl From<Method> for AccessControlRequestMethod
impl From<Method> for AccessControlRequestMethod
sourcefn from(method: Method) -> AccessControlRequestMethod
fn from(method: Method) -> AccessControlRequestMethod
Converts to this type from the input type.
sourceimpl Hash for AccessControlRequestMethod
impl Hash for AccessControlRequestMethod
sourceimpl Header for AccessControlRequestMethod
impl Header for AccessControlRequestMethod
sourcefn name() -> &'static HeaderName
fn name() -> &'static HeaderName
The name of this header.
sourcefn decode<'i, I>(values: &mut I) -> Result<AccessControlRequestMethod, Error> where
I: Iterator<Item = &'i HeaderValue>,
fn decode<'i, I>(values: &mut I) -> Result<AccessControlRequestMethod, Error> where
I: Iterator<Item = &'i HeaderValue>,
Decode this type from an iterator of HeaderValue
s.
sourceimpl PartialEq<AccessControlRequestMethod> for AccessControlRequestMethod
impl PartialEq<AccessControlRequestMethod> for AccessControlRequestMethod
sourcefn eq(&self, other: &AccessControlRequestMethod) -> bool
fn eq(&self, other: &AccessControlRequestMethod) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &AccessControlRequestMethod) -> bool
fn ne(&self, other: &AccessControlRequestMethod) -> bool
This method tests for !=
.
impl Eq for AccessControlRequestMethod
impl StructuralEq for AccessControlRequestMethod
impl StructuralPartialEq for AccessControlRequestMethod
Auto Trait Implementations
impl RefUnwindSafe for AccessControlRequestMethod
impl Send for AccessControlRequestMethod
impl Sync for AccessControlRequestMethod
impl Unpin for AccessControlRequestMethod
impl UnwindSafe for AccessControlRequestMethod
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> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
fn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
sourcefn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
fn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output;
where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output;
where
S: Into<Dispatch>,
T: Future, type Output = <T as Future>::Output;
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output;
fn with_current_subscriber(self) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more