Skip to content

Provide BufferedZopfliDeflater and allow user to pass in a custom Deflater #883

Provide BufferedZopfliDeflater and allow user to pass in a custom Deflater

Provide BufferedZopfliDeflater and allow user to pass in a custom Deflater #883

GitHub Actions / clippy failed Jul 8, 2023 in 0s

clippy

4 errors

Details

Results

Message level Amount
Internal compiler error 0
Error 4
Warning 0
Note 0
Help 0

Versions

  • rustc 1.70.0 (90c541806 2023-05-31)
  • cargo 1.70.0 (ec8a8a0ca 2023-04-25)
  • clippy 0.1.70 (90c5418 2023-05-31)

Annotations

Check failure on line 596 in src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

no field `deflatee` on type `std::borrow::Cow<'_, Options>`

error[E0609]: no field `deflatee` on type `std::borrow::Cow<'_, Options>`
   --> src/lib.rs:596:15
    |
596 |         &opts.deflatee,
    |               ^^^^^^^^

Check failure on line 875 in src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

cannot find type `T` in this scope

error[E0412]: cannot find type `T` in this scope
   --> src/lib.rs:875:16
    |
875 |     deflater: &T,
    |                ^ not found in this scope
    |
help: you might be missing a type parameter
    |
870 | fn postprocess_chunks<T>(
    |                      +++

Check failure on line 877 in src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

cannot find type `T` in this scope

error[E0412]: cannot find type `T` in this scope
   --> src/lib.rs:877:5
    |
877 |     T: Deflater,
    |     ^ not found in this scope
    |
help: you might be missing a type parameter
    |
870 | fn postprocess_chunks<T>(
    |                      +++

Check failure on line 595 in src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

cannot find value `max_siz` in this scope

error[E0425]: cannot find value `max_siz` in this scope
   --> src/lib.rs:595:9
    |
595 |         max_siz,
    |         ^^^^^^^ help: a local variable with a similar name exists: `max_size`