Skip to content

Merge pull request #27 #134

Merge pull request #27

Merge pull request #27 #134

GitHub Actions / clippy succeeded Aug 7, 2023 in 1s

clippy

2 warnings

Details

Results

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

Versions

  • rustc 1.73.0-nightly (f3623871c 2023-08-06)
  • cargo 1.73.0-nightly (d78bbf4bd 2023-08-03)
  • clippy 0.1.73 (f362387 2023-08-06)

Annotations

Check warning on line 11 in azure-kusto-data/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

missing documentation for a module

warning: missing documentation for a module
  --> azure-kusto-data/src/lib.rs:11:1
   |
11 | pub mod client_details;
   | ^^^^^^^^^^^^^^^^^^^^^^
   |
note: the lint level is defined here
  --> azure-kusto-data/src/lib.rs:1:9
   |
1  | #![warn(missing_docs)]
   |         ^^^^^^^^^^^^

Check warning on line 137 in azure-kusto-data/src/arrow.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

explicit call to `.into_iter()` in function argument accepting `IntoIterator`

warning: explicit call to `.into_iter()` in function argument accepting `IntoIterator`
   --> azure-kusto-data/src/arrow.rs:137:14
    |
137 |         .zip(table.columns.into_iter())
    |              ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing the `.into_iter()`: `table.columns`
    |
note: this parameter accepts any `IntoIterator`, so you don't need to call `.into_iter()`
   --> /rustc/f3623871cfa0763c95ebd6ceafaa6dc2e44ca68f/library/core/src/iter/traits/iterator.rs:641:12
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
    = note: `#[warn(clippy::useless_conversion)]` on by default