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;
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 if 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
Source§impl Header for AccessControlRequestMethod
impl Header for AccessControlRequestMethod
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
)