Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
warning: immediately dereferencing a reference --> src/util.rs:1995:54 | 1995 | match simd_json::serde::from_slice(&mut **&mut s_slice) { | ^^^^^^^^^^^^^ help: try: `s_slice` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#deref_addrof = note: `#[warn(clippy::deref_addrof)]` on by default warning: immediately dereferencing a reference --> src/util.rs:2139:54 | 2139 | match simd_json::serde::from_slice(&mut **&mut s_slice) { | ^^^^^^^^^^^^^ help: try: `s_slice` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#deref_addrof warning: deref which would be done by auto-deref --> src/util.rs:1995:48 | 1995 | match simd_json::serde::from_slice(&mut **&mut s_slice) { | ^^^^^^^^^^^^^^^^^^^ help: try: `&mut s_slice` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#explicit_auto_deref = note: `#[warn(clippy::explicit_auto_deref)]` on by default warning: this expression creates a reference which is immediately dereferenced by the compiler --> src/util.rs:2126:63 | 2126 | csv_to_jsonl(&tempfile_path, &get_stats_data_types(), &statsdatajson_path)?; | ^^^^^^^^^^^^^^^^^^^ help: change this to: `statsdatajson_path` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow = note: `#[warn(clippy::needless_borrow)]` on by default warning: deref which would be done by auto-deref --> src/util.rs:2139:48 | 2139 | match simd_json::serde::from_slice(&mut **&mut s_slice) { | ^^^^^^^^^^^^^^^^^^^ help: try: `&mut s_slice` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#explicit_auto_deref
- Loading branch information