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

use is_macro::Is;
use serde::Serialize;

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

pub use {
    contact::Contact, invoice::Invoice, location::Location, text::Text,
    venue::Venue,
};

/// Represents [`InputMessageContent`][docs].
///
/// [docs]: https://core.telegram.org/bots/api#inputmessagecontent
#[derive(Debug, PartialEq, Clone, Serialize, Is)]
#[serde(untagged)]
#[non_exhaustive]
pub enum InputMessageContent {
    /// A text message.
    Text(Text),
    /// A location.
    Location(Location),
    /// A venue.
    Venue(Venue),
    /// A contact.
    Contact(Contact),
    /// An invoice.
    Invoice(Invoice),
}

impl From<Text> for InputMessageContent {
    #[must_use]
    fn from(text: Text) -> Self {
        Self::Text(text)
    }
}

impl From<Location> for InputMessageContent {
    #[must_use]
    fn from(location: Location) -> Self {
        Self::Location(location)
    }
}

impl From<Venue> for InputMessageContent {
    #[must_use]
    fn from(venue: Venue) -> Self {
        Self::Venue(venue)
    }
}

impl From<Contact> for InputMessageContent {
    #[must_use]
    fn from(contact: Contact) -> Self {
        Self::Contact(contact)
    }
}

impl From<Invoice> for InputMessageContent {
    #[must_use]
    fn from(invoice: Invoice) -> Self {
        Self::Invoice(invoice)
    }
}