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