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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
macro_rules! doc_comment {
($x:expr, $($tt:tt)*) => {
#[doc = $x]
$($tt)*
};
}
macro_rules! allowed_updates {
($($update_kind:ident,)+) => {
use serde::{
ser::{Serializer, SerializeSeq},
de::{
Deserialize, Deserializer, Error, SeqAccess, Visitor,
},
Serialize,
};
#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq)]
#[must_use]
pub struct AllowedUpdates {
$($update_kind: bool,)+
}
impl AllowedUpdates {
pub const fn none() -> Self {
Self {
$($update_kind: false,)+
}
}
pub const fn all() -> Self {
Self {
$($update_kind: true,)+
}
}
$(
doc_comment!{
concat!(
"Configures if the `", stringify!($update_kind), "` update is allowed to be received.",
),
pub const fn $update_kind(mut self, is_allowed: bool) -> Self {
self.$update_kind = is_allowed;
self
}
}
)+
}
impl Serialize for AllowedUpdates {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
let mut seq = serializer.serialize_seq(None)?;
$(
if self.$update_kind {
seq.serialize_element(stringify!($update_kind))?;
}
)+
seq.end()
}
}
struct AllowedUpdatesVisitor;
impl<'v> Visitor<'v> for AllowedUpdatesVisitor {
type Value = AllowedUpdates;
fn expecting(&self, fmt: &mut std::fmt::Formatter) -> std::fmt::Result {
write!(fmt, "an AllowedUpdates sequence")
}
fn visit_seq<V>(self, mut seq: V) -> Result<Self::Value, V::Error>
where
V: SeqAccess<'v>,
{
let mut allowed_updates = AllowedUpdates::none();
while let Some(update_kind) = seq.next_element()? {
match update_kind {
$(
stringify!($update_kind) => {
allowed_updates = allowed_updates.$update_kind(true);
}
)+
_ => {
return Err(Error::unknown_variant(
update_kind,
&[$(stringify!($update_kind),)+]
))
}
}
}
Ok(allowed_updates)
}
}
impl<'de> Deserialize<'de> for AllowedUpdates {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
deserializer.deserialize_seq(
AllowedUpdatesVisitor,
)
}
}
}
}
allowed_updates! {
message,
edited_message,
channel_post,
edited_channel_post,
inline_query,
chosen_inline_result,
callback_query,
shipping_query,
pre_checkout_query,
poll,
poll_answer,
my_chat_member,
chat_member,
}
impl Default for AllowedUpdates {
fn default() -> Self {
Self::all().chat_member(false)
}
}