]> git.proxmox.com Git - ui/proxmox-yew-comp.git/commit
use enumerate() instead of indexing
authorMaximiliano Sandoval <m.sandoval@proxmox.com>
Mon, 13 Jan 2025 14:27:22 +0000 (15:27 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Tue, 14 Jan 2025 08:25:16 +0000 (09:25 +0100)
commit514569b7c110ec14e011a23723a4126943e229ae
tree3a2cd46773d31aa46e872f5b6a2a77d5016fcd03
parentd308e967a4500da99ad5991b7a08c7f38da85e6a
use enumerate() instead of indexing

Fixes:

warning: the loop variable `i` is used to index `time_data`
   --> src/rrd_graph_new.rs:388:14
    |
388 |     for i in 0..time_data.len() {
    |              ^^^^^^^^^^^^^^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_range_loop
    = note: `#[warn(clippy::needless_range_loop)]` on by default
help: consider using an iterator and enumerate()
    |
388 |     for (i, <item>) in time_data.iter().enumerate() {
    |         ~~~~~~~~~~~    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
src/rrd_graph_new.rs