Mutate API #1292
GitHub Actions / clippy
failed
Nov 21, 2024 in 1s
reviewdog [clippy] report
reported by reviewdog 🐶
Findings (1)
src/proto/single/cmd.rs|322 col 17| warning: variants Discard
and Clear
are never constructed
--> src/proto/single/cmd.rs:326:5
|
322 | pub(crate) enum MutationType {
| ------------ variants in this enum
...
326 | Discard,
| ^^^^^^^
327 | Clear,
| ^^^^^
|
= note: MutationType
has derived impls for the traits Debug
and Clone
, but these are intentionally ignored during dead code analysis
= note: #[warn(dead_code)]
on by default
Filtered Findings (0)
Annotations
Check warning on line 322 in src/proto/single/cmd.rs
github-actions / clippy
[clippy] src/proto/single/cmd.rs#L322
warning: variants `Discard` and `Clear` are never constructed
--> src/proto/single/cmd.rs:326:5
|
322 | pub(crate) enum MutationType {
| ------------ variants in this enum
...
326 | Discard,
| ^^^^^^^
327 | Clear,
| ^^^^^
|
= note: `MutationType` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis
= note: `#[warn(dead_code)]` on by default
Raw output
src/proto/single/cmd.rs:322:17:w:warning: variants `Discard` and `Clear` are never constructed
--> src/proto/single/cmd.rs:326:5
|
322 | pub(crate) enum MutationType {
| ------------ variants in this enum
...
326 | Discard,
| ^^^^^^^
327 | Clear,
| ^^^^^
|
= note: `MutationType` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis
= note: `#[warn(dead_code)]` on by default
__END__
Loading