Skip to content

feat: GroveDB visualizer #256

feat: GroveDB visualizer

feat: GroveDB visualizer #256

GitHub Actions / clippy succeeded May 16, 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 (9b00956e5 2024-04-29)
  • cargo 1.78.0 (54d8815d0 2024-03-26)
  • clippy 0.1.78 (9b00956 2024-04-29)

Annotations

Check warning on line 150 in path/src/subtree_path_builder.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

struct `SubtreePathBuilder` has a public `len` method, but no `is_empty` method

warning: struct `SubtreePathBuilder` has a public `len` method, but no `is_empty` method
   --> path/src/subtree_path_builder.rs:150:5
    |
150 |     pub fn len(&self) -> usize {
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#len_without_is_empty

Check warning on line 151 in path/src/subtree_path.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

struct `SubtreePath` has a public `len` method, but no `is_empty` method

warning: struct `SubtreePath` has a public `len` method, but no `is_empty` method
   --> path/src/subtree_path.rs:151:5
    |
151 |     pub fn len(&self) -> usize {
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#len_without_is_empty
    = note: `#[warn(clippy::len_without_is_empty)]` on by default