logo
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