Skip to content

reactor-uc project templates #193

reactor-uc project templates

reactor-uc project templates #193

GitHub Actions / Clippy Output succeeded Dec 10, 2024 in 1s

Clippy Output

3 warnings

Details

Results

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

Versions

  • rustc 1.83.0 (90b35a623 2024-11-26)
  • cargo 1.83.0 (5ffbef321 2024-10-29)
  • clippy 0.1.83 (90b35a6 2024-11-26)

Annotations

Check warning on line 18 in src/util/command_line.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Output

the following explicit lifetimes could be elided: 'a

warning: the following explicit lifetimes could be elided: 'a
  --> src/util/command_line.rs:18:6
   |
18 | impl<'a, W0: Write, W1: Write> Write for TeeWriter<'a, W0, W1> {
   |      ^^                                            ^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
   |
18 - impl<'a, W0: Write, W1: Write> Write for TeeWriter<'a, W0, W1> {
18 + impl<W0: Write, W1: Write> Write for TeeWriter<'_, W0, W1> {
   |

Check warning on line 296 in src/package/mod.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Output

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
   --> src/package/mod.rs:296:6
    |
296 | impl<'de> Visitor<'de> for VersioningVisitor {
    |      ^^^          ^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
296 - impl<'de> Visitor<'de> for VersioningVisitor {
296 + impl Visitor<'_> for VersioningVisitor {
    |

Check warning on line 107 in src/backends/lfc.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Output

the following explicit lifetimes could be elided: 'a

warning: the following explicit lifetimes could be elided: 'a
   --> src/backends/lfc.rs:107:6
    |
107 | impl<'a> Display for LfcJsonArgs<'a> {
    |      ^^                          ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
    = note: `#[warn(clippy::needless_lifetimes)]` on by default
help: elide the lifetimes
    |
107 - impl<'a> Display for LfcJsonArgs<'a> {
107 + impl Display for LfcJsonArgs<'_> {
    |