Skip to content

blsforme: Temporarily force quiet for Serpent testing #271

blsforme: Temporarily force quiet for Serpent testing

blsforme: Temporarily force quiet for Serpent testing #271

GitHub Actions / clippy failed Nov 24, 2024 in 0s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (2)

blsforme/src/bootloader/systemd_boot/mod.rs|23 col 12| warning: field config is never read
--> blsforme/src/bootloader/systemd_boot/mod.rs:25:5
|
23 | pub struct Loader<'a, 'b> {
| ------ field in this struct
24 | /// system configuration
25 | config: &'a Configuration,
| ^^^^^^
|
= note: Loader has a derived impl for the trait Debug, but this is intentionally ignored during dead code analysis
= note: #[warn(dead_code)] on by default
blsforme/src/entry.rs|10 col 12| warning: field cmdline is never read
--> blsforme/src/entry.rs:14:5
|
10 | pub struct Entry<'a> {
| ----- field in this struct
...
14 | cmdline: Option,
| ^^^^^^^
|
= note: Entry has a derived impl for the trait Debug, but this is intentionally ignored during dead code analysis

Filtered Findings (0)

Annotations

Check warning on line 23 in blsforme/src/bootloader/systemd_boot/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

[clippy] blsforme/src/bootloader/systemd_boot/mod.rs#L23

warning: field `config` is never read
  --> blsforme/src/bootloader/systemd_boot/mod.rs:25:5
   |
23 | pub struct Loader<'a, 'b> {
   |            ------ field in this struct
24 |     /// system configuration
25 |     config: &'a Configuration,
   |     ^^^^^^
   |
   = note: `Loader` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
   = note: `#[warn(dead_code)]` on by default
Raw output
blsforme/src/bootloader/systemd_boot/mod.rs:23:12:w:warning: field `config` is never read
  --> blsforme/src/bootloader/systemd_boot/mod.rs:25:5
   |
23 | pub struct Loader<'a, 'b> {
   |            ------ field in this struct
24 |     /// system configuration
25 |     config: &'a Configuration,
   |     ^^^^^^
   |
   = note: `Loader` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
   = note: `#[warn(dead_code)]` on by default


__END__

Check warning on line 10 in blsforme/src/entry.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

[clippy] blsforme/src/entry.rs#L10

warning: field `cmdline` is never read
  --> blsforme/src/entry.rs:14:5
   |
10 | pub struct Entry<'a> {
   |            ----- field in this struct
...
14 |     cmdline: Option<String>,
   |     ^^^^^^^
   |
   = note: `Entry` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
Raw output
blsforme/src/entry.rs:10:12:w:warning: field `cmdline` is never read
  --> blsforme/src/entry.rs:14:5
   |
10 | pub struct Entry<'a> {
   |            ----- field in this struct
...
14 |     cmdline: Option<String>,
   |     ^^^^^^^
   |
   = note: `Entry` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis


__END__