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
use serde::{Deserialize, Serialize};
#[derive(Clone, Copy, Debug, Deserialize, Eq, Hash, PartialEq, Serialize)]
#[serde(from = "u8", into = "u8")]
pub enum AutoModerationEventType {
MessageSend,
Unknown(u8),
}
impl From<u8> for AutoModerationEventType {
fn from(value: u8) -> Self {
match value {
1 => Self::MessageSend,
_ => Self::Unknown(value),
}
}
}
impl From<AutoModerationEventType> for u8 {
fn from(value: AutoModerationEventType) -> Self {
match value {
AutoModerationEventType::MessageSend => 1,
AutoModerationEventType::Unknown(unknown) => unknown,
}
}
}
#[cfg(test)]
mod tests {
use super::AutoModerationEventType;
use serde::{Deserialize, Serialize};
use static_assertions::assert_impl_all;
use std::{fmt::Debug, hash::Hash};
assert_impl_all!(
AutoModerationEventType: Clone,
Copy,
Debug,
Deserialize<'static>,
Eq,
Hash,
PartialEq,
Send,
Serialize,
Sync,
);
#[test]
fn values() {
assert_eq!(1, u8::from(AutoModerationEventType::MessageSend));
assert_eq!(250, u8::from(AutoModerationEventType::Unknown(250)));
}
}