logo

Trait actix_web::dev::BodyEncoding[][src]

pub trait BodyEncoding {
    fn get_encoding(&self) -> Option<ContentEncoding>;
fn encoding(&mut self, encoding: ContentEncoding) -> &mut Self; }
Expand description

Helper trait that allows to set specific encoding for response.

Required methods

Get content encoding

Set content encoding

Must be used with crate::middleware::Compress to take effect.

Implementations on Foreign Types

Implementors