Struct tower_http::cors::AllowMethods
source · pub struct AllowMethods(_);
Available on crate feature
cors
only.Expand description
Holds configuration for how to set the Access-Control-Allow-Methods
header.
See CorsLayer::allow_methods
for more details.
Implementations§
source§impl AllowMethods
impl AllowMethods
sourcepub fn any() -> Self
pub fn any() -> Self
Allow any method by sending a wildcard (*
)
See CorsLayer::allow_methods
for more details.
sourcepub fn exact(method: Method) -> Self
pub fn exact(method: Method) -> Self
Set a single allowed method
See CorsLayer::allow_methods
for more details.
sourcepub fn list<I>(methods: I) -> Selfwhere
I: IntoIterator<Item = Method>,
pub fn list<I>(methods: I) -> Selfwhere I: IntoIterator<Item = Method>,
Set multiple allowed methods
See CorsLayer::allow_methods
for more details.
sourcepub fn mirror_request() -> Self
pub fn mirror_request() -> Self
Allow any method, by mirroring the preflight Access-Control-Request-Method
header.
See CorsLayer::allow_methods
for more details.
Trait Implementations§
source§impl Clone for AllowMethods
impl Clone for AllowMethods
source§fn clone(&self) -> AllowMethods
fn clone(&self) -> AllowMethods
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 AllowMethods
impl Debug for AllowMethods
source§impl Default for AllowMethods
impl Default for AllowMethods
source§fn default() -> AllowMethods
fn default() -> AllowMethods
Returns the “default value” for a type. Read more
source§impl From<Any> for AllowMethods
impl From<Any> for AllowMethods
source§impl From<Method> for AllowMethods
impl From<Method> for AllowMethods
Auto Trait Implementations§
impl RefUnwindSafe for AllowMethods
impl Send for AllowMethods
impl Sync for AllowMethods
impl Unpin for AllowMethods
impl UnwindSafe for AllowMethods
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