Fix control queue handling #433
GitHub Actions / clippy
succeeded
Dec 3, 2024 in 0s
clippy
1 warning
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 0 |
Warning | 1 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.85.0-nightly (d49be02cf 2024-12-02)
- cargo 1.85.0-nightly (4c39aaff6 2024-11-25)
- clippy 0.1.85 (d49be02cf6 2024-12-02)
Annotations
Check warning on line 463 in src/dispatcher.rs
github-actions / clippy
the following explicit lifetimes could be elided: 'f
warning: the following explicit lifetimes could be elided: 'f
--> src/dispatcher.rs:463:6
|
463 | impl<'f, F, E> Future for ServiceResult<'f, F, E>
| ^^ ^^
|
= 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
|
463 - impl<'f, F, E> Future for ServiceResult<'f, F, E>
463 + impl<F, E> Future for ServiceResult<'_, F, E>
|
Loading