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
//! Types related to input message contents.

use serde::Serialize;

mod contact;
mod location;
mod text;
mod venue;

pub use {contact::*, location::*, text::*, venue::*};

/// Represents [`InputMessageContext`][docs].
///
/// [docs]: https://core.telegram.org/bots/api#inputmessagecontent
#[derive(Debug, PartialEq, Clone, Copy, Serialize)]
#[serde(untagged)]
// todo: #[non_exhaustive]
pub enum InputMessageContent<'a> {
    /// A text message.
    Text(Text<'a>),
    /// A location.
    Location(Location),
    /// A venue.
    Venue(Venue<'a>),
    /// A contact.
    Contact(Contact<'a>),
}

impl InputMessageContent<'_> {
    /// Checks if `self` is `Text`.
    pub fn is_text(self) -> bool {
        match self {
            InputMessageContent::Text(..) => true,
            _ => false,
        }
    }

    /// Checks if `self` is `Location`.
    pub fn is_location(self) -> bool {
        match self {
            InputMessageContent::Location(..) => true,
            _ => false,
        }
    }

    /// Checks if `self` is `Venue`.
    pub fn is_venue(self) -> bool {
        match self {
            InputMessageContent::Venue(..) => true,
            _ => false,
        }
    }

    /// Checks if `self` is `Contact.`
    pub fn is_contact(self) -> bool {
        match self {
            InputMessageContent::Contact(..) => true,
            _ => false,
        }
    }
}

impl<'a> From<Text<'a>> for InputMessageContent<'a> {
    fn from(text: Text<'a>) -> Self {
        InputMessageContent::Text(text)
    }
}

impl<'a> From<Location> for InputMessageContent<'a> {
    fn from(location: Location) -> Self {
        InputMessageContent::Location(location)
    }
}

impl<'a> From<Venue<'a>> for InputMessageContent<'a> {
    fn from(venue: Venue<'a>) -> Self {
        InputMessageContent::Venue(venue)
    }
}

impl<'a> From<Contact<'a>> for InputMessageContent<'a> {
    fn from(contact: Contact<'a>) -> Self {
        InputMessageContent::Contact(contact)
    }
}