Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
clippy 0.0.201 - Docs.rs
[go: Go Back, main page]

clippy 0.0.201

A bunch of helpful lints to avoid common pitfalls in Rust
error: Iterator::step_by(0) will panic at runtime
  --> $DIR/range.rs:10:13
   |
10 |     let _ = (0..1).step_by(0);
   |             ^^^^^^^^^^^^^^^^^
   |
   = note: `-D iterator-step-by-zero` implied by `-D warnings`

error: Iterator::step_by(0) will panic at runtime
  --> $DIR/range.rs:14:13
   |
14 |     let _ = (1..).step_by(0);
   |             ^^^^^^^^^^^^^^^^

error: Iterator::step_by(0) will panic at runtime
  --> $DIR/range.rs:15:13
   |
15 |     let _ = (1..=2).step_by(0);
   |             ^^^^^^^^^^^^^^^^^^

error: Iterator::step_by(0) will panic at runtime
  --> $DIR/range.rs:18:13
   |
18 |     let _ = x.step_by(0);
   |             ^^^^^^^^^^^^

error: It is more idiomatic to use v1.iter().enumerate()
  --> $DIR/range.rs:26:14
   |
26 |     let _x = v1.iter().zip(0..v1.len());
   |              ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D range-zip-with-len` implied by `-D warnings`

error: Iterator::step_by(0) will panic at runtime
  --> $DIR/range.rs:30:13
   |
30 |     let _ = v1.iter().step_by(2/3);
   |             ^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 6 previous errors