Skip to content

fix: update THIRD_PARTY_LICENSES.md #82

fix: update THIRD_PARTY_LICENSES.md

fix: update THIRD_PARTY_LICENSES.md #82

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

clippy

8 errors

Details

Results

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

Versions

  • rustc 1.84.0 (9fc6b4312 2025-01-07)
  • cargo 1.84.0 (66221abde 2024-11-19)
  • clippy 0.1.84 (9fc6b43126 2025-01-07)

Annotations

Check failure on line 223 in checkmk-client/src/rules.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
   --> checkmk-client/src/rules.rs:223:6
    |
223 | impl<'a> RulesClient<'a> {
    |      ^^              ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
223 - impl<'a> RulesClient<'a> {
223 + impl RulesClient<'_> {
    |

Check failure on line 223 in checkmk-client/src/rules.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
   --> checkmk-client/src/rules.rs:223:6
    |
223 | impl<'a> RulesClient<'a> {
    |      ^^              ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
223 - impl<'a> RulesClient<'a> {
223 + impl RulesClient<'_> {
    |

Check failure on line 164 in checkmk-client/src/hosts.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
   --> checkmk-client/src/hosts.rs:164:6
    |
164 | impl<'a> HostsClient<'a> {
    |      ^^              ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
164 - impl<'a> HostsClient<'a> {
164 + impl HostsClient<'_> {
    |

Check failure on line 164 in checkmk-client/src/hosts.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
   --> checkmk-client/src/hosts.rs:164:6
    |
164 | impl<'a> HostsClient<'a> {
    |      ^^              ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
164 - impl<'a> HostsClient<'a> {
164 + impl HostsClient<'_> {
    |

Check failure on line 109 in checkmk-client/src/folders.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
   --> checkmk-client/src/folders.rs:109:6
    |
109 | impl<'a> FoldersClient<'a> {
    |      ^^                ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
109 - impl<'a> FoldersClient<'a> {
109 + impl FoldersClient<'_> {
    |

Check failure on line 109 in checkmk-client/src/folders.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
   --> checkmk-client/src/folders.rs:109:6
    |
109 | impl<'a> FoldersClient<'a> {
    |      ^^                ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
109 - impl<'a> FoldersClient<'a> {
109 + impl FoldersClient<'_> {
    |

Check failure on line 39 in checkmk-client/src/changes.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
  --> checkmk-client/src/changes.rs:39:6
   |
39 | impl<'a> ChangesClient<'a> {
   |      ^^                ^^
   |
   = 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
   |
39 - impl<'a> ChangesClient<'a> {
39 + impl ChangesClient<'_> {
   |

Check failure on line 39 in checkmk-client/src/changes.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
  --> checkmk-client/src/changes.rs:39:6
   |
39 | impl<'a> ChangesClient<'a> {
   |      ^^                ^^
   |
   = 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
   |
39 - impl<'a> ChangesClient<'a> {
39 + impl ChangesClient<'_> {
   |