1 2 3 4 5 6 7 8
/// 大寫或小寫數字。 #[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)] pub enum ChineseCase { /// 大寫數字。 Upper, /// 小寫數字。 Lower, }