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
use super::{inline, reply, ForceReply};
use is_macro::Is;
use serde::Serialize;
#[derive(Serialize, Debug, PartialEq, Eq, Clone, Hash, Is)]
#[serde(untagged)]
#[non_exhaustive]
#[must_use]
pub enum Any {
Inline(inline::Keyboard),
Reply(reply::Keyboard),
RemoveReply(reply::Remove),
ForceReply(ForceReply),
}
impl From<inline::Keyboard> for Any {
fn from(keyboard: inline::Keyboard) -> Self {
Self::Inline(keyboard)
}
}
impl From<inline::Markup> for Any {
fn from(keyboard: inline::Markup) -> Self {
Self::Inline(keyboard.into())
}
}
impl From<reply::Keyboard> for Any {
fn from(keyboard: reply::Keyboard) -> Self {
Self::Reply(keyboard)
}
}
impl From<reply::Markup> for Any {
fn from(keyboard: reply::Markup) -> Self {
Self::Reply(keyboard.into())
}
}
impl From<reply::Remove> for Any {
fn from(keyboard: reply::Remove) -> Self {
Self::RemoveReply(keyboard)
}
}
impl From<ForceReply> for Any {
fn from(keyboard: ForceReply) -> Self {
Self::ForceReply(keyboard)
}
}