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
use crate::{
    methods::AnswerShippingQuery,
    types::{shipping, User},
    Bot,
};
common! {
    struct Shipping {
        id: shipping::query::Id,
        from: User,
        invoice_payload: String,
        shipping_address: shipping::Address,
    }
}
impl Shipping {
    #[allow(clippy::missing_const_for_fn)]
    pub(crate) fn new(bot: Bot, query: shipping::Query) -> Self {
        Self {
            bot,
            id: query.id,
            from: query.from,
            invoice_payload: query.invoice_payload,
            shipping_address: query.shipping_address,
        }
    }
    pub fn answer(
        &self,
        result: Result<impl Into<Vec<shipping::Option>>, impl Into<String>>,
    ) -> AnswerShippingQuery<'_> {
        self.bot.answer_shipping_query(self.id.clone(), result)
    }
    pub fn ok(
        &self,
        options: impl Into<Vec<shipping::Option>>,
    ) -> AnswerShippingQuery<'_> {
        let answer: Result<_, String> = Ok(options);
        self.answer(answer)
    }
    pub fn err(&self, err: impl Into<String>) -> AnswerShippingQuery<'_> {
        let answer: Result<Vec<_>, _> = Err(err);
        self.answer(answer)
    }
}