Skip to content

Update build.yml

Update build.yml #152

GitHub Actions / clippy succeeded Feb 6, 2024 in 0s

clippy

2 warnings

Details

Results

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

Versions

  • rustc 1.78.0-nightly (f067fd608 2024-02-05)
  • cargo 1.78.0-nightly (cdf84b69d 2024-02-02)
  • clippy 0.1.77 (f067fd6 2024-02-05)

Annotations

Check warning on line 83 in azure-kusto-data/src/operations/query.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the method `send` doesn't need a mutable reference

warning: the method `send` doesn't need a mutable reference
  --> azure-kusto-data/src/operations/query.rs:83:19
   |
83 |             .send(&mut context, &mut request)
   |                   ^^^^^^^^^^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_mut_passed

Check warning on line 65 in azure-kusto-data/src/cloud_info.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the method `send` doesn't need a mutable reference

warning: the method `send` doesn't need a mutable reference
  --> azure-kusto-data/src/cloud_info.rs:65:38
   |
65 |         let response = pipeline.send(&mut Context::new(), &mut request).await?;
   |                                      ^^^^^^^^^^^^^^^^^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_mut_passed
   = note: `#[warn(clippy::unnecessary_mut_passed)]` on by default