twilight_model/application/monetization/
entitlement_type.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Clone, Copy, Debug, Deserialize, Eq, Hash, PartialEq, Serialize)]
4#[non_exhaustive]
5#[serde(from = "u8", into = "u8")]
6pub enum EntitlementType {
7    /// Entitlement was purchased as an app subscription.
8    ApplicationSubscription,
9    Unknown(u8),
10}
11
12impl From<u8> for EntitlementType {
13    fn from(value: u8) -> Self {
14        match value {
15            8 => Self::ApplicationSubscription,
16            other => Self::Unknown(other),
17        }
18    }
19}
20
21impl From<EntitlementType> for u8 {
22    fn from(value: EntitlementType) -> Self {
23        match value {
24            EntitlementType::ApplicationSubscription => 8,
25            EntitlementType::Unknown(other) => other,
26        }
27    }
28}
29
30impl EntitlementType {
31    pub const fn name(self) -> &'static str {
32        match self {
33            Self::ApplicationSubscription => "ApplicationSubscription",
34            Self::Unknown(_) => "Unknown",
35        }
36    }
37}
38
39#[cfg(test)]
40mod tests {
41    use super::EntitlementType;
42    use serde_test::Token;
43
44    #[test]
45    fn variants() {
46        serde_test::assert_tokens(&EntitlementType::ApplicationSubscription, &[Token::U8(8)]);
47        serde_test::assert_tokens(&EntitlementType::Unknown(99), &[Token::U8(99)]);
48    }
49
50    #[test]
51    fn names() {
52        assert_eq!(
53            EntitlementType::ApplicationSubscription.name(),
54            "ApplicationSubscription"
55        );
56        assert_eq!(EntitlementType::Unknown(99).name(), "Unknown");
57    }
58}