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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
use std::borrow::Cow;
use std::ops::Not;
use crate::requests::*;
use crate::types::*;
#[derive(Debug, Clone, PartialEq, PartialOrd, Serialize)]
#[must_use = "requests do nothing unless sent"]
pub struct AnswerCallbackQuery<'t> {
callback_query_id: CallbackQueryId,
#[serde(skip_serializing_if = "Option::is_none")]
text: Option<Cow<'t, str>>,
#[serde(skip_serializing_if = "Not::not")]
show_alert: bool,
#[serde(skip_serializing_if = "Option::is_none")]
url: Option<Cow<'t, str>>,
#[serde(skip_serializing_if = "Option::is_none")]
cache_time: Option<i64>,
}
impl<'i, 't> Request for AnswerCallbackQuery<'t> {
type Type = JsonRequestType<Self>;
type Response = JsonTrueToUnitResponse;
fn serialize(&self) -> Result<HttpRequest, Error> {
Self::Type::serialize(RequestUrl::method("answerCallbackQuery"), self)
}
}
impl<'t> AnswerCallbackQuery<'t> {
fn new<Q, T>(query: Q, text: T) -> Self
where
Q: ToCallbackQueryId,
T: Into<Cow<'t, str>>,
{
Self {
callback_query_id: query.to_callback_query_id(),
text: Some(text.into()),
show_alert: false,
url: None,
cache_time: None,
}
}
fn acknowledge<Q>(query: Q) -> Self
where
Q: ToCallbackQueryId,
{
Self {
callback_query_id: query.to_callback_query_id(),
text: None,
show_alert: false,
url: None,
cache_time: None,
}
}
pub fn show_alert(&mut self) -> &mut Self {
self.show_alert = true;
self
}
pub fn url<T>(&mut self, url: T) -> &mut Self
where
T: Into<Cow<'t, str>>,
{
self.url = Some(url.into());
self
}
pub fn cache_time(&mut self, time: i64) -> &mut Self {
self.cache_time = Some(time);
self
}
}
pub trait CanAnswerCallbackQuery {
fn answer<'t, T>(&self, text: T) -> AnswerCallbackQuery<'t>
where
T: Into<Cow<'t, str>>;
fn acknowledge<'t>(&self) -> AnswerCallbackQuery<'t>;
}
impl<Q> CanAnswerCallbackQuery for Q
where
Q: ToCallbackQueryId,
{
fn answer<'t, T>(&self, text: T) -> AnswerCallbackQuery<'t>
where
T: Into<Cow<'t, str>>,
{
AnswerCallbackQuery::new(&self, text)
}
fn acknowledge<'t>(&self) -> AnswerCallbackQuery<'t> {
AnswerCallbackQuery::acknowledge(&self)
}
}