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
macro_rules! callback {
(
struct $name:ident {
#[doc = $kind_doc:literal] $kind:ident: $kind_type:ty,
$origin:ident: $origin_type:ty,
} -> EventLoop::$handler:ident
) => {
common! {
#[doc = concat!(
"Context for the [`", stringify!($handler), "`][handler] ", "handler.\n\n",
"[handler]: crate::EventLoop::", stringify!($handler),
)]
struct $name {
id: crate::types::callback::query::Id,
from: crate::types::User,
$origin: $origin_type,
chat_instance: String,
#[doc = $kind_doc]
$kind: $kind_type,
}
}
impl $name {
#[allow(clippy::missing_const_for_fn)]
pub(crate) fn new(
bot: crate::Bot,
id: crate::types::callback::query::Id,
from: crate::types::User,
$origin: $origin_type,
chat_instance: String,
$kind: $kind_type,
) -> Self {
Self {
bot,
id,
from,
$origin,
chat_instance,
$kind,
}
}
}
impl crate::contexts::fields::Callback for $name {
#[must_use]
fn id(&self) -> &crate::types::callback::query::Id {
&self.id
}
#[must_use]
fn from(&self) -> &crate::types::User {
&self.from
}
#[must_use]
fn chat_instance(&self) -> &str {
&self.chat_instance
}
}
}
}