Skip to content

fix: align versions and model string #253

fix: align versions and model string

fix: align versions and model string #253

GitHub Actions / clippy failed Feb 15, 2025 in 0s

clippy

1 error

Details

Results

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

Versions

  • rustc 1.84.1 (e71f9a9a9 2025-01-27)
  • cargo 1.84.1 (66221abde 2024-11-19)
  • clippy 0.1.84 (e71f9a9a98 2025-01-27)

Annotations

Check failure on line 130 in src/utils/io.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'a

error: the following explicit lifetimes could be elided: 'a
   --> src/utils/io.rs:130:6
    |
130 | impl<'a, W> AsyncWrite for WriteMonitor<'a, W>
    |      ^^                                 ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
    = note: `-D clippy::needless-lifetimes` implied by `-D warnings`
    = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]`
help: elide the lifetimes
    |
130 - impl<'a, W> AsyncWrite for WriteMonitor<'a, W>
130 + impl<W> AsyncWrite for WriteMonitor<'_, W>
    |