2018-08-10 17:58:23 +00:00
|
|
|
error: Prefer FxHashMap over HashMap, it has better performance and we don't need any collision prevention in clippy
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/fxhash.rs:7:24
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | use std::collections::{HashMap, HashSet};
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^ help: use: `FxHashMap`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::default-hash-types` implied by `-D warnings`
|
2018-08-10 17:58:23 +00:00
|
|
|
|
|
|
|
error: Prefer FxHashSet over HashSet, it has better performance and we don't need any collision prevention in clippy
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/fxhash.rs:7:33
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | use std::collections::{HashMap, HashSet};
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^ help: use: `FxHashSet`
|
2018-08-10 17:58:23 +00:00
|
|
|
|
|
|
|
error: Prefer FxHashMap over HashMap, it has better performance and we don't need any collision prevention in clippy
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/fxhash.rs:10:15
|
2018-08-10 17:58:23 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _map: HashMap<String, String> = HashMap::default();
|
2018-08-13 07:23:07 +00:00
|
|
|
| ^^^^^^^ help: use: `FxHashMap`
|
2018-08-10 17:58:23 +00:00
|
|
|
|
|
|
|
error: Prefer FxHashMap over HashMap, it has better performance and we don't need any collision prevention in clippy
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/fxhash.rs:10:41
|
2018-08-10 17:58:23 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _map: HashMap<String, String> = HashMap::default();
|
2018-08-13 07:23:07 +00:00
|
|
|
| ^^^^^^^ help: use: `FxHashMap`
|
2018-08-10 17:58:23 +00:00
|
|
|
|
|
|
|
error: Prefer FxHashSet over HashSet, it has better performance and we don't need any collision prevention in clippy
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/fxhash.rs:11:15
|
2018-08-10 17:58:23 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _set: HashSet<String> = HashSet::default();
|
2018-08-13 07:23:07 +00:00
|
|
|
| ^^^^^^^ help: use: `FxHashSet`
|
2018-08-10 17:58:23 +00:00
|
|
|
|
|
|
|
error: Prefer FxHashSet over HashSet, it has better performance and we don't need any collision prevention in clippy
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/fxhash.rs:11:33
|
2018-08-10 17:58:23 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _set: HashSet<String> = HashSet::default();
|
2018-08-13 07:23:07 +00:00
|
|
|
| ^^^^^^^ help: use: `FxHashSet`
|
2018-08-10 17:58:23 +00:00
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
|