1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-02 00:02:02 +00:00

better name

This commit is contained in:
Nikolay Kim 2017-11-07 16:08:10 -08:00
parent 6974213036
commit 2eb3ad0de3

View file

@ -95,7 +95,7 @@ impl PayloadWriter for PayloadType {
} }
enum Decoder { enum Decoder {
Zlib(DeflateDecoder<BytesWriter>), Deflate(DeflateDecoder<BytesWriter>),
Gzip(Option<GzDecoder<Wrapper>>), Gzip(Option<GzDecoder<Wrapper>>),
Br(BrotliDecoder<BytesWriter>), Br(BrotliDecoder<BytesWriter>),
Identity, Identity,
@ -148,7 +148,7 @@ impl EncodedPayload {
let dec = match enc { let dec = match enc {
ContentEncoding::Br => Decoder::Br( ContentEncoding::Br => Decoder::Br(
BrotliDecoder::new(BytesWriter::default())), BrotliDecoder::new(BytesWriter::default())),
ContentEncoding::Deflate => Decoder::Zlib( ContentEncoding::Deflate => Decoder::Deflate(
DeflateDecoder::new(BytesWriter::default())), DeflateDecoder::new(BytesWriter::default())),
ContentEncoding::Gzip => Decoder::Gzip(None), ContentEncoding::Gzip => Decoder::Gzip(None),
_ => Decoder::Identity, _ => Decoder::Identity,
@ -212,7 +212,7 @@ impl PayloadWriter for EncodedPayload {
} }
} }
}, },
Decoder::Zlib(ref mut decoder) => { Decoder::Deflate(ref mut decoder) => {
match decoder.try_finish() { match decoder.try_finish() {
Ok(_) => { Ok(_) => {
let b = decoder.get_mut().buf.take().freeze(); let b = decoder.get_mut().buf.take().freeze();
@ -291,7 +291,7 @@ impl PayloadWriter for EncodedPayload {
} }
} }
Decoder::Zlib(ref mut decoder) => { Decoder::Deflate(ref mut decoder) => {
if decoder.write(&data).is_ok() { if decoder.write(&data).is_ok() {
if decoder.flush().is_ok() { if decoder.flush().is_ok() {
let b = decoder.get_mut().buf.take().freeze(); let b = decoder.get_mut().buf.take().freeze();