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;

/// An enum of possible keyboards.
#[derive(Serialize, Debug, PartialEq, Eq, Clone, Hash, Is)]
#[serde(untagged)]
#[non_exhaustive]
#[must_use]
pub enum Any {
    /// An inline keyboard.
    Inline(inline::Keyboard),
    /// A reply markup.
    Reply(reply::Keyboard),
    /// Removes reply markup.
    RemoveReply(reply::Remove),
    /// Forces reply.
    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)
    }
}