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: you probably are missing some parameter in your format string
 --> $DIR/panic.rs:8:16
  |
8 |         panic!("{}");
  |                ^^^^
  |
  = note: `-D panic-params` implied by `-D warnings`

error: you probably are missing some parameter in your format string
  --> $DIR/panic.rs:10:16
   |
10 |         panic!("{:?}");
   |                ^^^^^^

error: you probably are missing some parameter in your format string
  --> $DIR/panic.rs:12:23
   |
12 |         assert!(true, "here be missing values: {}");
   |                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: you probably are missing some parameter in your format string
  --> $DIR/panic.rs:15:12
   |
15 |     panic!("{{{this}}}");
   |            ^^^^^^^^^^^^

error: aborting due to 4 previous errors