[−][src]Struct actix_web::middleware::Condition
Middleware
for conditionally enables another middleware.
The controled middleware must not change the Service
interfaces.
This means you cannot control such middlewares like Logger
or Compress
.
Usage
use actix_web::middleware::{Condition, NormalizePath}; use actix_web::App; fn main() { let enable_normalize = std::env::var("NORMALIZE_PATH") == Ok("true".into()); let app = App::new() .wrap(Condition::new(enable_normalize, NormalizePath)); }
Methods
impl<T> Condition<T>
[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]
S: Service,
T: Transform<S, Request = S::Request, Response = S::Response, Error = S::Error>,
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.
fn new_transform(&self, service: S) -> Self::Future
[src]
fn map_init_err<F, E>(self, f: F) -> TransformMapInitErr<Self, S, F, E> where
F: Fn(Self::InitError) -> E,
[src]
F: Fn(Self::InitError) -> E,
fn from_err<E>(self) -> TransformFromErr<Self, S, E> where
E: From<Self::InitError>,
[src]
E: From<Self::InitError>,
Auto Trait Implementations
impl<T> Send for Condition<T> where
T: Send,
T: Send,
impl<T> Sync for Condition<T> where
T: Sync,
T: Sync,
impl<T> Unpin for Condition<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for Condition<T> where
T: UnwindSafe,
T: UnwindSafe,
impl<T> RefUnwindSafe for Condition<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T, S> IntoTransform<T, S> for T where
T: Transform<S>,
[src]
T: Transform<S>,
fn into_transform(self) -> T
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,