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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
use serde_repr::{Deserialize_repr, Serialize_repr};
use std::fmt::{Display, Formatter, Result as FmtResult};
#[derive(
Clone, Copy, Debug, Deserialize_repr, Eq, Hash, Ord, PartialEq, PartialOrd, Serialize_repr,
)]
#[repr(u8)]
pub enum ComponentType {
ActionRow = 1,
Button = 2,
SelectMenu = 3,
}
impl ComponentType {
pub const fn name(self) -> &'static str {
match self {
Self::ActionRow => "ActionRow",
Self::Button => "Button",
Self::SelectMenu => "SelectMenu",
}
}
}
impl Display for ComponentType {
fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
f.write_str(self.name())
}
}
#[cfg(test)]
mod tests {
use super::ComponentType;
use serde::{Deserialize, Serialize};
use serde_test::Token;
use static_assertions::{assert_impl_all, const_assert_eq};
use std::{fmt::Debug, hash::Hash};
assert_impl_all!(
ComponentType: Clone,
Copy,
Debug,
Deserialize<'static>,
Eq,
Hash,
Ord,
PartialEq,
PartialOrd,
Send,
Serialize,
Sync
);
const_assert_eq!(1, ComponentType::ActionRow as u8);
const_assert_eq!(2, ComponentType::Button as u8);
const_assert_eq!(3, ComponentType::SelectMenu as u8);
#[test]
fn test_variants() {
serde_test::assert_tokens(&ComponentType::ActionRow, &[Token::U8(1)]);
serde_test::assert_tokens(&ComponentType::Button, &[Token::U8(2)]);
serde_test::assert_tokens(&ComponentType::SelectMenu, &[Token::U8(3)]);
}
#[test]
fn test_names() {
assert_eq!("ActionRow", ComponentType::ActionRow.name());
assert_eq!("Button", ComponentType::Button.name());
assert_eq!("SelectMenu", ComponentType::SelectMenu.name());
}
}