[][src]Struct actix_web_condition_middleware::Condition

pub struct Condition<T> { /* fields omitted */ }

use like below: App::new().wrap(Condition::new(true, NormalizePath)) Note that you cannot use with Logger because it changes response type

Methods

impl<T> Condition<T>[src]

pub fn new(enable: bool, trans: T) -> Self[src]

Trait Implementations

impl<S, T> Transform<S> for Condition<T> where
    S: Service,
    T: Transform<S, Request = S::Request, Response = S::Response, Error = S::Error>, 
[src]

type Request = S::Request

Requests handled by the service.

type Response = S::Response

Responses given by the service.

type Error = S::Error

Errors produced by the service.

type InitError = T::InitError

Errors produced while building a service.

type Transform = ConditionMiddleware<T::Transform, S>

The TransformService value created by this factory

type Future = Either<Map<T::Future, fn(_: T::Transform) -> Self::Transform>, FutureResult<Self::Transform, Self::InitError>>

The future response value.

Auto Trait Implementations

impl<T> Sync for Condition<T> where
    T: Sync

impl<T> Send for Condition<T> where
    T: Send

impl<T> Unpin for Condition<T> where
    T: Unpin

impl<T> UnwindSafe for Condition<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for Condition<T> where
    T: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T, S> IntoTransform<T, S> for T where
    T: Transform<S>, 
[src]