wowlab_tidy/languages/rust/rules/performance/mod.rs
1mod alloc_in_loop;
2mod async_loop_no_yield;
3mod box_leak;
4mod box_vec;
5mod busy_wait;
6mod clone_in_loop;
7mod collection_new_in_loop;
8mod default_hasher;
9mod from_instead_of_as;
10mod large_async_local;
11mod missing_capacity;
12mod nested_smart_pointers;
13mod ok_or_eager;
14mod support;
15mod unnecessary_collect;
16mod vec_init_then_push;
17mod vec_string_field;