expose collect_block buffer size (#2326) #3397
GitHub Actions / clippy
succeeded
Mar 15, 2024 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.76.0 (07dca489a 2024-02-04)
- cargo 1.76.0 (c84b36747 2024-01-18)
- clippy 0.1.76 (07dca48 2024-02-04)
Annotations
Check warning on line 105 in columnar/src/column_values/mod.rs
github-actions / clippy
this `.into_iter()` call is equivalent to `.iter_mut()` and will not consume the `slice`
warning: this `.into_iter()` call is equivalent to `.iter_mut()` and will not consume the `slice`
--> columnar/src/column_values/mod.rs:105:14
|
105 | .into_iter()
| ^^^^^^^^^ help: call directly: `iter_mut`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_on_ref
Check warning on line 78 in columnar/src/column_values/mod.rs
github-actions / clippy
this `.into_iter()` call is equivalent to `.iter_mut()` and will not consume the `slice`
warning: this `.into_iter()` call is equivalent to `.iter_mut()` and will not consume the `slice`
--> columnar/src/column_values/mod.rs:78:14
|
78 | .into_iter()
| ^^^^^^^^^ help: call directly: `iter_mut`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_on_ref
= note: `#[warn(clippy::into_iter_on_ref)]` on by default
Loading