Struct tower_http::cors::CorsLayer
source · [−]pub struct CorsLayer { /* private fields */ }
cors
only.Expand description
Layer that applies the Cors
middleware which adds headers for CORS.
See the module docs for an example.
Implementations
sourceimpl CorsLayer
impl CorsLayer
sourcepub fn new() -> Self
pub fn new() -> Self
Create a new CorsLayer
.
This creates a restrictive configuration. Use the builder methods to customize the behavior.
sourcepub fn permissive() -> Self
pub fn permissive() -> Self
A very permissive configuration suitable for development:
- Credentials allowed.
- All request headers allowed.
- All methods allowed.
- All origins allowed.
- All headers exposed.
- Max age set to 1 hour.
Note this is not recommended for production use.
sourcepub fn allow_credentials(self, allow_credentials: bool) -> Self
pub fn allow_credentials(self, allow_credentials: bool) -> Self
Set the Access-Control-Allow-Credentials
header.
use tower_http::cors::CorsLayer;
let layer = CorsLayer::new().allow_credentials(true);
sourcepub fn allow_headers<I>(self, headers: I) -> Self where
I: Into<AnyOr<Vec<HeaderName>>>,
pub fn allow_headers<I>(self, headers: I) -> Self where
I: Into<AnyOr<Vec<HeaderName>>>,
Set the value of the Access-Control-Allow-Headers
header.
use tower_http::cors::CorsLayer;
use http::header::{AUTHORIZATION, ACCEPT};
let layer = CorsLayer::new().allow_headers(vec![AUTHORIZATION, ACCEPT]);
All headers can be allowed with
use tower_http::cors::{Any, CorsLayer};
let layer = CorsLayer::new().allow_headers(Any);
Note that multiple calls to this method will override any previous calls.
Also note that Access-Control-Allow-Headers
is required for requests that have
Access-Control-Request-Headers
.
sourcepub fn max_age(self, max_age: Duration) -> Self
pub fn max_age(self, max_age: Duration) -> Self
Set the value of the Access-Control-Max-Age
header.
use tower_http::cors::CorsLayer;
use std::time::Duration;
let layer = CorsLayer::new().max_age(Duration::from_secs(60) * 10);
By default the header will not be set which disables caching and will require a preflight call for all requests.
Note that each browser has a maximum internal value that takes precedence when the Access-Control-Max-Age is greater. For more details see mdn.
sourcepub fn allow_methods<T>(self, methods: T) -> Self where
T: Into<AnyOr<Vec<Method>>>,
pub fn allow_methods<T>(self, methods: T) -> Self where
T: Into<AnyOr<Vec<Method>>>,
Set the value of the Access-Control-Allow-Methods
header.
use tower_http::cors::CorsLayer;
use http::Method;
let layer = CorsLayer::new().allow_methods(vec![Method::GET, Method::POST]);
All methods can be allowed with
use tower_http::cors::{Any, CorsLayer};
let layer = CorsLayer::new().allow_methods(Any);
Note that multiple calls to this method will override any previous calls.
sourcepub fn allow_origin<T>(self, origin: T) -> Self where
T: Into<AnyOr<Origin>>,
pub fn allow_origin<T>(self, origin: T) -> Self where
T: Into<AnyOr<Origin>>,
Set the value of the Access-Control-Allow-Origin
header.
use tower_http::cors::{CorsLayer, Origin};
let layer = CorsLayer::new().allow_origin(Origin::exact(
"http://example.com".parse().unwrap(),
));
Multiple origins can be allowed with
use tower_http::cors::{CorsLayer, Origin};
let origins = vec![
"http://example.com".parse().unwrap(),
"http://api.example.com".parse().unwrap(),
];
let layer = CorsLayer::new().allow_origin(Origin::list(origins));
All origins can be allowed with
use tower_http::cors::{Any, CorsLayer};
let layer = CorsLayer::new().allow_origin(Any);
You can also use a closure
use tower_http::cors::{CorsLayer, Origin};
use http::{HeaderValue, request::Parts};
let layer = CorsLayer::new().allow_origin(
Origin::predicate(|origin: &HeaderValue, _request_head: &Parts| {
origin.as_bytes().ends_with(b".rust-lang.org")
})
);
Note that multiple calls to this method will override any previous calls.
sourcepub fn expose_headers<I>(self, headers: I) -> Self where
I: Into<AnyOr<Vec<HeaderName>>>,
pub fn expose_headers<I>(self, headers: I) -> Self where
I: Into<AnyOr<Vec<HeaderName>>>,
Set the value of the Access-Control-Expose-Headers
header.
use tower_http::cors::CorsLayer;
use http::header::CONTENT_ENCODING;
let layer = CorsLayer::new().expose_headers(vec![CONTENT_ENCODING]);
All headers can be allowed with
use tower_http::cors::{Any, CorsLayer};
let layer = CorsLayer::new().expose_headers(Any);
Note that multiple calls to this method will override any previous calls.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for CorsLayer
impl Send for CorsLayer
impl Sync for CorsLayer
impl Unpin for CorsLayer
impl !UnwindSafe for CorsLayer
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> PolicyExt for T where
T: ?Sized,
impl<T> PolicyExt for T where
T: ?Sized,
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more