Skip to content

Feature: Add config setting to disable gzip compression #1627 #3514

Feature: Add config setting to disable gzip compression #1627

Feature: Add config setting to disable gzip compression #1627 #3514

Triggered via pull request November 6, 2024 22:57
Status Success
Total duration 58s
Artifacts

clippy.yml

on: pull_request
clippy_nightly
49s
clippy_nightly
Fit to window
Zoom out
Zoom in

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> { |