pub struct Cors { /* private fields */ }
Expand description
It defines CORS instance.
Implementations§
Source§impl Cors
impl Cors
Sourcepub fn allow_methods<I>(self, methods: I) -> Self
pub fn allow_methods<I>(self, methods: I) -> Self
Adds multiple methods to the existing list of allowed request methods.
§Panics
Panics if the provided argument is not a valid http::Method
.
Sourcepub fn allow_any_origin(self) -> Self
pub fn allow_any_origin(self) -> Self
Sets that any Origin
header is allowed.
§Warning
This can allow websites you didn’t intend to access this resource, it is usually better to set an explicit list.
Sourcepub fn allow_origins<I>(self, origins: I) -> Self
pub fn allow_origins<I>(self, origins: I) -> Self
Add multiple origins to the existing list of allowed Origin
s.
§Panics
Panics if the provided argument is not a valid Origin
.
Sourcepub fn allow_headers<I>(self, headers: I) -> Self
pub fn allow_headers<I>(self, headers: I) -> Self
Adds multiple headers to the list of allowed request headers.
Note: These should match the values the browser sends via Access-Control-Request-Headers
, e.g.content-type
.
§Panics
Panics if any of the headers are not a valid http::header::HeaderName
.
Sourcepub fn expose_headers<I>(self, headers: I) -> Self
pub fn expose_headers<I>(self, headers: I) -> Self
Adds multiple headers to the list of exposed request headers.
Note: These should match the values the browser sends via Access-Control-Request-Headers
, e.g.content-type
.
§Panics
Panics if any of the headers are not a valid http::header::HeaderName
.