twilight_model/guild/auto_moderation/
event_type.rs

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
use serde::{Deserialize, Serialize};

/// Indicates in what event context a rule should be checked.
#[derive(Clone, Copy, Debug, Deserialize, Eq, Hash, PartialEq, Serialize)]
#[serde(from = "u8", into = "u8")]
pub enum AutoModerationEventType {
    /// When a member sends or edits a message in a guild.
    MessageSend,
    /// When a member edits their profile.
    MemberUpdate,
    /// Variant value is unknown to the library.
    Unknown(u8),
}

impl From<u8> for AutoModerationEventType {
    fn from(value: u8) -> Self {
        match value {
            1 => Self::MessageSend,
            2 => Self::MemberUpdate,
            _ => Self::Unknown(value),
        }
    }
}

impl From<AutoModerationEventType> for u8 {
    fn from(value: AutoModerationEventType) -> Self {
        match value {
            AutoModerationEventType::MessageSend => 1,
            AutoModerationEventType::MemberUpdate => 2,
            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!(2, u8::from(AutoModerationEventType::MemberUpdate));
        assert_eq!(250, u8::from(AutoModerationEventType::Unknown(250)));
    }
}