1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-07-02 01:05:08 +02:00

chore: address clippy warnings

This commit is contained in:
Rob Ede
2023-07-20 11:02:15 +01:00
parent 1040bc3d17
commit 3eb5a059ad
22 changed files with 87 additions and 92 deletions

View File

@ -12,7 +12,7 @@ pub use self::{decoder::Decoder, encoder::Encoder};
/// Special-purpose writer for streaming (de-)compression.
///
/// Pre-allocates 8KiB of capacity.
pub(self) struct Writer {
struct Writer {
buf: BytesMut,
}