Skip to content

Owned value relying on Vec instead of BTreeMap (#2364)

Sign in for the full log view
GitHub Actions / clippy succeeded Apr 22, 2024 in 0s

clippy

1 warning

Details

Results

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

Versions

  • rustc 1.77.2 (25ef9e3d8 2024-04-09)
  • cargo 1.77.2 (e52e36006 2024-03-26)
  • clippy 0.1.77 (25ef9e3 2024-04-09)

Annotations

Check warning on line 186 in src/schema/document/owned_value.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

dereferencing a tuple pattern where every element takes a reference

warning: dereferencing a tuple pattern where every element takes a reference
   --> src/schema/document/owned_value.rs:186:21
    |
186 |                 for &(ref k, ref v) in obj {
    |                     ^^^^^^^^^^^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference
    = note: `#[warn(clippy::needless_borrowed_reference)]` on by default
help: try removing the `&` and `ref` parts
    |
186 -                 for &(ref k, ref v) in obj {
186 +                 for (k, v) in obj {
    |