Skip to content

Impl DiskTreeMap::subtree_iter #278

Impl DiskTreeMap::subtree_iter

Impl DiskTreeMap::subtree_iter #278

GitHub Actions / clippy failed Feb 28, 2024 in 0s

clippy

1 error

Details

Results

Message level Amount
Internal compiler error 0
Error 1
Warning 0
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 failure on line 132 in src/disktree/tree.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

cannot find value `range` in this scope

error[E0425]: cannot find value `range` in this scope
   --> src/disktree/tree.rs:132:53
    |
132 |                 let val_bytes = &(*self.0).as_ref()[range];
    |                                                     ^^^^^ not found in this scope
    |
help: consider importing one of these items
    |
1   + use core::slice::range;
    |
1   + use std::slice::range;
    |