Struct tower_http::decompression::DecompressionLayer
source · [−]pub struct DecompressionLayer { /* private fields */ }decompression-br or decompression-deflate or decompression-gzip only.Expand description
Decompresses response bodies of the underlying service.
This adds the Accept-Encoding header to requests and transparently decompresses response
bodies based on the Content-Encoding header.
See the module docs for more details.
Implementations
sourceimpl DecompressionLayer
impl DecompressionLayer
sourcepub fn gzip(self, enable: bool) -> Self
Available on crate feature decompression-gzip only.
pub fn gzip(self, enable: bool) -> Self
decompression-gzip only.Sets whether to request the gzip encoding.
sourcepub fn deflate(self, enable: bool) -> Self
Available on crate feature decompression-deflate only.
pub fn deflate(self, enable: bool) -> Self
decompression-deflate only.Sets whether to request the Deflate encoding.
sourcepub fn br(self, enable: bool) -> Self
Available on crate feature decompression-br only.
pub fn br(self, enable: bool) -> Self
decompression-br only.Sets whether to request the Brotli encoding.
sourcepub fn no_gzip(self) -> Self
pub fn no_gzip(self) -> Self
Disables the gzip encoding.
This method is available even if the gzip crate feature is disabled.
sourcepub fn no_deflate(self) -> Self
pub fn no_deflate(self) -> Self
Disables the Deflate encoding.
This method is available even if the deflate crate feature is disabled.
Trait Implementations
sourceimpl Clone for DecompressionLayer
impl Clone for DecompressionLayer
sourcefn clone(&self) -> DecompressionLayer
fn clone(&self) -> DecompressionLayer
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for DecompressionLayer
impl Debug for DecompressionLayer
sourceimpl Default for DecompressionLayer
impl Default for DecompressionLayer
sourcefn default() -> DecompressionLayer
fn default() -> DecompressionLayer
Returns the “default value” for a type. Read more
sourceimpl<S> Layer<S> for DecompressionLayer
impl<S> Layer<S> for DecompressionLayer
Auto Trait Implementations
impl RefUnwindSafe for DecompressionLayer
impl Send for DecompressionLayer
impl Sync for DecompressionLayer
impl Unpin for DecompressionLayer
impl UnwindSafe for DecompressionLayer
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> PolicyExt for T where
T: ?Sized,
impl<T> PolicyExt for T where
T: ?Sized,
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more