help: convert the identifier to upper camel case
enum などでC言語で見られるような UPPER_SNAKE_CASE を使おうとするとこのエラーが出てくることがある。
これを抑制するには
https://stackoverflow.com/questions/64362934/how-to-disable-camel-case-warnings/64363119
その識別子だけの場合、直前に
#[allow(non_camel_case_types)]
を書く。
ファイル全体の場合、ファイルの先頭部分に
#![allow(non_camel_case_types)]
を書く。