chore(deps): replace backoff with backon #3569
Annotations
2 errors
this bound is already specified as the supertrait of `Backoff`:
kube-runtime/src/controller/mod.rs#L919
error: this bound is already specified as the supertrait of `Backoff`
--> kube-runtime/src/controller/mod.rs:919:62
|
919 | pub fn trigger_backoff(mut self, backoff: impl Backoff + Send + 'static) -> Self {
| ^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#implied_bounds_in_impls
note: the lint level is defined here
--> kube-runtime/src/lib.rs:11:9
|
11 | #![deny(clippy::all)]
| ^^^^^^^^^^^
= note: `#[deny(clippy::implied_bounds_in_impls)]` implied by `#[deny(clippy::all)]`
help: try removing this bound
|
919 - pub fn trigger_backoff(mut self, backoff: impl Backoff + Send + 'static) -> Self {
919 + pub fn trigger_backoff(mut self, backoff: impl Backoff + 'static) -> Self {
|
|
clippy_nightly
Clippy has exited with exit code 101
|