1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
#![allow(dead_code, non_camel_case_types)]
#![allow(clippy::enum_variant_names, clippy::upper_case_acronyms)]
#[remain::sorted]
enum UnderscoresFirst {
__Nonexhaustive,
Aaa,
Bbb,
}
#[remain::sorted]
enum UnderscoresLast {
Aaa,
Bbb,
__Nonexhaustive,
}
#[remain::sorted]
enum SnakeCase {
under_score,
underscore,
}
#[remain::sorted]
enum NumberingSimple {
E1,
E9,
E10,
}
#[remain::sorted]
enum NumberingComplex {
E1_Aaa,
E9_Aaa,
E10_Aaa,
}
#[remain::sorted]
enum AtomOrder {
A,
A_,
A0,
AA,
Aa,
under_0core,
under_Score,
under_score,
under__0core,
under__Score,
under__score,
underscore,
}
#[remain::sorted]
enum LargeNumber {
E1,
E99999999999999999999999,
}
|