[][src]Struct tower_web::middleware::cors::CorsMiddleware

pub struct CorsMiddleware { /* fields omitted */ }

Middleware providing an implementation of the CORS specification.

Trait Implementations

impl<S> Middleware<S> for CorsMiddleware where
    S: HttpService
[src]

type Request = Request<S::RequestBody>

The wrapped service request type

type Response = Response<Option<S::ResponseBody>>

The wrapped service response type

type Error = S::Error

The wrapped service's error type

type Service = CorsService<S>

The wrapped service

fn chain<T>(self, middleware: T) -> Chain<Self, T> where
    T: Middleware<Self::Service>,
    Self: Sized
[src]

Return a new Middleware instance that applies both self and middleware to services being wrapped. Read more

impl Debug for CorsMiddleware[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Same for T

type Output = T

Should always be Self

impl<T> Erased for T