Skip to content

Add setters for expiring and unique jobs (Enterprise Faktory) #7

Add setters for expiring and unique jobs (Enterprise Faktory)

Add setters for expiring and unique jobs (Enterprise Faktory) #7

GitHub Actions / clippy succeeded Dec 8, 2023 in 0s

clippy

2 warnings

Details

Results

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

Versions

  • rustc 1.75.0-beta.5 (1a06ac5b5 2023-12-01)
  • cargo 1.75.0-beta.5 (1d8b05cdd 2023-11-20)
  • clippy 0.1.75 (1a06ac5 2023-12-01)

Annotations

Check warning on line 11 in src/proto/single/cmd.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

type parameter `W` goes unused in function definition

warning: type parameter `W` goes unused in function definition
  --> src/proto/single/cmd.rs:11:17
   |
11 | fn write_queues<W, S>(w: &mut dyn Write, queues: &[S]) -> Result<(), Error>
   |                 ^
   |
   = help: consider removing the parameter
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_type_parameters
   = note: `#[warn(clippy::extra_unused_type_parameters)]` on by default

Check warning on line 19 in src/proto/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused import: `self::single::Hi`

warning: unused import: `self::single::Hi`
  --> src/proto/mod.rs:19:9
   |
19 | pub use self::single::Hi;
   |         ^^^^^^^^^^^^^^^^
   |
   = note: `#[warn(unused_imports)]` on by default