Feature: Add config setting to disable gzip compression #1627 #3514
Annotations
1 warning
the following explicit lifetimes could be elided: 'a:
kube-client/src/api/entry.rs#L137
warning: the following explicit lifetimes could be elided: 'a
--> kube-client/src/api/entry.rs:137:6
|
137 | impl<'a, K> OccupiedEntry<'a, K> {
| ^^ ^^
|
= 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
|
137 - impl<'a, K> OccupiedEntry<'a, K> {
137 + impl<K> OccupiedEntry<'_, K> {
|
|