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
macro_rules! callback {
    (
        struct $name:ident {
            #[doc = $kind_doc:literal] $kind:ident: $kind_type:ty,
        } -> EventLoop::$handler:ident
    ) => {
        common! {
            #[doc = concat!(
                "Context for the [`", stringify!($handler), "`][handler] ", "handler.\n\n",

                "[handler]: ../event_loop/struct.Event.html#method.",
                stringify!($handler),
            )]
            struct $name {
                /// The ID of the callback.
                id: crate::types::callback::query::Id,
                /// The user who initiated the callback.
                from: crate::types::User,
                /// The origin of the query.
                origin: crate::types::callback::Origin,
                /// The identifier of the chat.
                chat_instance: String,
                #[doc = $kind_doc]
                $kind: $kind_type,
            }
        }

        impl $name {
            // https://github.com/rust-lang/rust-clippy/issues/4041
            #[allow(clippy::missing_const_for_fn)]
            pub(crate) fn new(
                bot: std::sync::Arc<crate::Bot>,
                id: crate::types::callback::query::Id,
                from: crate::types::User,
                origin: crate::types::callback::Origin,
                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 origin(&self) -> &crate::types::callback::Origin {
                &self.origin
            }

            #[must_use]
            fn chat_instance(&self) -> &str {
                &self.chat_instance
            }
        }
    }
}