pub struct AccessControlRequestMethod(pub Method);
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
use hyper::header::{Headers, AccessControlRequestMethod};
use hyper::method::Method;
let mut headers = Headers::new();
headers.set(AccessControlRequestMethod(Method::Get));
Tuple Fields§
§0: Method
Methods from Deref<Target = Method>§
sourcepub fn safe(&self) -> bool
pub fn safe(&self) -> bool
Whether a method is considered “safe”, meaning the request is essentially read-only.
See the spec for more words.
sourcepub fn idempotent(&self) -> bool
pub fn idempotent(&self) -> bool
Whether a method is considered “idempotent”, meaning the request has the same result is executed multiple times.
See the spec for more words.
Trait Implementations§
source§impl Clone for AccessControlRequestMethod
impl Clone for AccessControlRequestMethod
source§fn clone(&self) -> AccessControlRequestMethod
fn clone(&self) -> AccessControlRequestMethod
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 AccessControlRequestMethod
impl Debug for AccessControlRequestMethod
source§impl Deref for AccessControlRequestMethod
impl Deref for AccessControlRequestMethod
source§impl Display for AccessControlRequestMethod
impl Display for AccessControlRequestMethod
§impl From<AccessControlRequestMethod> for Header<'static>
impl From<AccessControlRequestMethod> for Header<'static>
§fn from(header: AccessControlRequestMethod) -> Header<'static>
fn from(header: AccessControlRequestMethod) -> Header<'static>
Converts to this type from the input type.
source§impl Header for AccessControlRequestMethod
impl Header for AccessControlRequestMethod
source§fn header_name() -> &'static str
fn header_name() -> &'static str
Returns the name of the header field this belongs to. Read more
source§fn parse_header(raw: &[Vec<u8>]) -> Result<AccessControlRequestMethod, Error>
fn parse_header(raw: &[Vec<u8>]) -> Result<AccessControlRequestMethod, Error>
Parse a header from a raw stream of bytes. Read more
impl StructuralPartialEq for AccessControlRequestMethod
Auto Trait Implementations§
impl Freeze for AccessControlRequestMethod
impl RefUnwindSafe for AccessControlRequestMethod
impl Send for AccessControlRequestMethod
impl Sync for AccessControlRequestMethod
impl Unpin for AccessControlRequestMethod
impl UnwindSafe for AccessControlRequestMethod
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)