1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
use super::Decompression;
use crate::compression_utils::AcceptEncoding;
use tower_layer::Layer;
#[derive(Debug, Default, Clone)]
pub struct DecompressionLayer {
accept: AcceptEncoding,
}
impl<S> Layer<S> for DecompressionLayer {
type Service = Decompression<S>;
fn layer(&self, service: S) -> Self::Service {
Decompression {
inner: service,
accept: self.accept,
}
}
}
impl DecompressionLayer {
pub fn new() -> Self {
Default::default()
}
#[cfg(feature = "decompression-gzip")]
pub fn gzip(mut self, enable: bool) -> Self {
self.accept.set_gzip(enable);
self
}
#[cfg(feature = "decompression-deflate")]
pub fn deflate(mut self, enable: bool) -> Self {
self.accept.set_deflate(enable);
self
}
#[cfg(feature = "decompression-br")]
pub fn br(mut self, enable: bool) -> Self {
self.accept.set_br(enable);
self
}
pub fn no_gzip(mut self) -> Self {
self.accept.set_gzip(false);
self
}
pub fn no_deflate(mut self) -> Self {
self.accept.set_deflate(false);
self
}
pub fn no_br(mut self) -> Self {
self.accept.set_br(false);
self
}
}