[][src]Struct actix_web::middleware::Compress

pub struct Compress(_);

Middleware for compressing response body.

Use BodyEncoding trait for overriding response compression. To disable compression set encoding to ContentEncoding::Identity value.

use actix_web::{web, middleware, App, HttpResponse};

fn main() {
    let app = App::new()
        .wrap(middleware::Compress::default())
        .service(
            web::resource("/test")
                .route(web::get().to(|| HttpResponse::Ok()))
                .route(web::head().to(|| HttpResponse::MethodNotAllowed()))
        );
}

Methods

impl Compress[src]

pub fn new(encoding: ContentEncoding) -> Self[src]

Create new Compress middleware with default encoding.

Trait Implementations

impl Default for Compress[src]

impl Clone for Compress[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Compress[src]

impl<S, B> Transform<S> for Compress where
    B: MessageBody,
    S: Service<Request = ServiceRequest, Response = ServiceResponse<B>, Error = Error>, 
[src]

type Request = ServiceRequest

Requests handled by the service.

type Response = ServiceResponse<Encoder<B>>

Responses given by the service.

type Error = Error

Errors produced by the service.

type InitError = ()

Errors produced while building a service.

type Transform = CompressMiddleware<S>

The TransformService value created by this factory

type Future = FutureResult<Self::Transform, Self::InitError>

The future response value.

fn map_init_err<F, E>(self, f: F) -> TransformMapInitErr<Self, S, F, E> where
    F: Fn(Self::InitError) -> E, 
[src]

Map this service's factory error to a different error, returning a new transform service factory. Read more

fn from_err<E>(self) -> TransformFromErr<Self, S, E> where
    E: From<Self::InitError>, 
[src]

Map this service's init error to any error implementing From for this services Error`. Read more

Auto Trait Implementations

impl Send for Compress

impl Sync for Compress

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T, U> Into<U> for T where
    U: From<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> Erased for T

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