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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
use serde::{Deserialize, Serialize};
/// This object represents a Telegram user or bot.
/// # Documentation
/// <https://core.telegram.org/bots/api#user>
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct User {
/// Unique identifier for this user or bot. This number may have more than 32 significant bits and some programming languages may have difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a 64-bit integer or double-precision float type are safe for storing this identifier.
pub id: i64,
/// `true`, if this user is a bot
pub is_bot: bool,
/// User's or bot's first name
pub first_name: Box<str>,
/// User's or bot's last name
#[serde(skip_serializing_if = "Option::is_none")]
pub last_name: Option<Box<str>>,
/// User's or bot's username
#[serde(skip_serializing_if = "Option::is_none")]
pub username: Option<Box<str>>,
/// IETF language tag of the user's language
#[serde(skip_serializing_if = "Option::is_none")]
pub language_code: Option<Box<str>>,
/// `true`, if this user is a Telegram Premium user
#[serde(skip_serializing_if = "Option::is_none")]
pub is_premium: Option<bool>,
/// `true`, if this user added the bot to the attachment menu
#[serde(skip_serializing_if = "Option::is_none")]
pub added_to_attachment_menu: Option<bool>,
/// `true`, if the bot can be invited to groups. Returned only in getMe.
#[serde(skip_serializing_if = "Option::is_none")]
pub can_join_groups: Option<bool>,
/// `true`, if privacy mode is disabled for the bot. Returned only in getMe.
#[serde(skip_serializing_if = "Option::is_none")]
pub can_read_all_group_messages: Option<bool>,
/// `true`, if the bot supports inline queries. Returned only in getMe.
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_inline_queries: Option<bool>,
/// `true`, if the bot can be connected to a Telegram Business account to receive its messages. Returned only in getMe.
#[serde(skip_serializing_if = "Option::is_none")]
pub can_connect_to_business: Option<bool>,
/// `true`, if the bot has a main Web App. Returned only in getMe.
#[serde(skip_serializing_if = "Option::is_none")]
pub has_main_web_app: Option<bool>,
/// `true`, if the bot has forum topic mode enabled in private chats. Returned only in getMe.
#[serde(skip_serializing_if = "Option::is_none")]
pub has_topics_enabled: Option<bool>,
/// `true`, if the bot allows users to create and delete topics in private chats. Returned only in getMe.
#[serde(skip_serializing_if = "Option::is_none")]
pub allows_users_to_create_topics: Option<bool>,
/// `true`, if other bots can be created to be controlled by the bot. Returned only in getMe.
#[serde(skip_serializing_if = "Option::is_none")]
pub can_manage_bots: Option<bool>,
}
impl User {
/// Creates a new `User`.
///
/// # Arguments
/// * `id` - Unique identifier for this user or bot. This number may have more than 32 significant bits and some programming languages may have difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a 64-bit integer or double-precision float type are safe for storing this identifier.
/// * `is_bot` - `true`, if this user is a bot
/// * `first_name` - User's or bot's first name
///
/// # Notes
/// Use builder methods to set optional fields.
#[must_use]
pub fn new<T0: Into<i64>, T1: Into<bool>, T2: Into<Box<str>>>(
id: T0,
is_bot: T1,
first_name: T2,
) -> Self {
Self {
id: id.into(),
is_bot: is_bot.into(),
first_name: first_name.into(),
last_name: None,
username: None,
language_code: None,
is_premium: None,
added_to_attachment_menu: None,
can_join_groups: None,
can_read_all_group_messages: None,
supports_inline_queries: None,
can_connect_to_business: None,
has_main_web_app: None,
has_topics_enabled: None,
allows_users_to_create_topics: None,
can_manage_bots: None,
}
}
/// Unique identifier for this user or bot. This number may have more than 32 significant bits and some programming languages may have difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a 64-bit integer or double-precision float type are safe for storing this identifier.
#[must_use]
pub fn id<T: Into<i64>>(self, val: T) -> Self {
let mut this = self;
this.id = val.into();
this
}
/// `true`, if this user is a bot
#[must_use]
pub fn is_bot<T: Into<bool>>(self, val: T) -> Self {
let mut this = self;
this.is_bot = val.into();
this
}
/// User's or bot's first name
#[must_use]
pub fn first_name<T: Into<Box<str>>>(self, val: T) -> Self {
let mut this = self;
this.first_name = val.into();
this
}
/// User's or bot's last name
#[must_use]
pub fn last_name<T: Into<Box<str>>>(self, val: T) -> Self {
let mut this = self;
this.last_name = Some(val.into());
this
}
/// User's or bot's last name
#[must_use]
pub fn last_name_option<T: Into<Box<str>>>(self, val: Option<T>) -> Self {
let mut this = self;
this.last_name = val.map(Into::into);
this
}
/// User's or bot's username
#[must_use]
pub fn username<T: Into<Box<str>>>(self, val: T) -> Self {
let mut this = self;
this.username = Some(val.into());
this
}
/// User's or bot's username
#[must_use]
pub fn username_option<T: Into<Box<str>>>(self, val: Option<T>) -> Self {
let mut this = self;
this.username = val.map(Into::into);
this
}
/// IETF language tag of the user's language
#[must_use]
pub fn language_code<T: Into<Box<str>>>(self, val: T) -> Self {
let mut this = self;
this.language_code = Some(val.into());
this
}
/// IETF language tag of the user's language
#[must_use]
pub fn language_code_option<T: Into<Box<str>>>(self, val: Option<T>) -> Self {
let mut this = self;
this.language_code = val.map(Into::into);
this
}
/// `true`, if this user is a Telegram Premium user
#[must_use]
pub fn is_premium<T: Into<bool>>(self, val: T) -> Self {
let mut this = self;
this.is_premium = Some(val.into());
this
}
/// `true`, if this user is a Telegram Premium user
#[must_use]
pub fn is_premium_option<T: Into<bool>>(self, val: Option<T>) -> Self {
let mut this = self;
this.is_premium = val.map(Into::into);
this
}
/// `true`, if this user added the bot to the attachment menu
#[must_use]
pub fn added_to_attachment_menu<T: Into<bool>>(self, val: T) -> Self {
let mut this = self;
this.added_to_attachment_menu = Some(val.into());
this
}
/// `true`, if this user added the bot to the attachment menu
#[must_use]
pub fn added_to_attachment_menu_option<T: Into<bool>>(self, val: Option<T>) -> Self {
let mut this = self;
this.added_to_attachment_menu = val.map(Into::into);
this
}
/// `true`, if the bot can be invited to groups. Returned only in getMe.
#[must_use]
pub fn can_join_groups<T: Into<bool>>(self, val: T) -> Self {
let mut this = self;
this.can_join_groups = Some(val.into());
this
}
/// `true`, if the bot can be invited to groups. Returned only in getMe.
#[must_use]
pub fn can_join_groups_option<T: Into<bool>>(self, val: Option<T>) -> Self {
let mut this = self;
this.can_join_groups = val.map(Into::into);
this
}
/// `true`, if privacy mode is disabled for the bot. Returned only in getMe.
#[must_use]
pub fn can_read_all_group_messages<T: Into<bool>>(self, val: T) -> Self {
let mut this = self;
this.can_read_all_group_messages = Some(val.into());
this
}
/// `true`, if privacy mode is disabled for the bot. Returned only in getMe.
#[must_use]
pub fn can_read_all_group_messages_option<T: Into<bool>>(self, val: Option<T>) -> Self {
let mut this = self;
this.can_read_all_group_messages = val.map(Into::into);
this
}
/// `true`, if the bot supports inline queries. Returned only in getMe.
#[must_use]
pub fn supports_inline_queries<T: Into<bool>>(self, val: T) -> Self {
let mut this = self;
this.supports_inline_queries = Some(val.into());
this
}
/// `true`, if the bot supports inline queries. Returned only in getMe.
#[must_use]
pub fn supports_inline_queries_option<T: Into<bool>>(self, val: Option<T>) -> Self {
let mut this = self;
this.supports_inline_queries = val.map(Into::into);
this
}
/// `true`, if the bot can be connected to a Telegram Business account to receive its messages. Returned only in getMe.
#[must_use]
pub fn can_connect_to_business<T: Into<bool>>(self, val: T) -> Self {
let mut this = self;
this.can_connect_to_business = Some(val.into());
this
}
/// `true`, if the bot can be connected to a Telegram Business account to receive its messages. Returned only in getMe.
#[must_use]
pub fn can_connect_to_business_option<T: Into<bool>>(self, val: Option<T>) -> Self {
let mut this = self;
this.can_connect_to_business = val.map(Into::into);
this
}
/// `true`, if the bot has a main Web App. Returned only in getMe.
#[must_use]
pub fn has_main_web_app<T: Into<bool>>(self, val: T) -> Self {
let mut this = self;
this.has_main_web_app = Some(val.into());
this
}
/// `true`, if the bot has a main Web App. Returned only in getMe.
#[must_use]
pub fn has_main_web_app_option<T: Into<bool>>(self, val: Option<T>) -> Self {
let mut this = self;
this.has_main_web_app = val.map(Into::into);
this
}
/// `true`, if the bot has forum topic mode enabled in private chats. Returned only in getMe.
#[must_use]
pub fn has_topics_enabled<T: Into<bool>>(self, val: T) -> Self {
let mut this = self;
this.has_topics_enabled = Some(val.into());
this
}
/// `true`, if the bot has forum topic mode enabled in private chats. Returned only in getMe.
#[must_use]
pub fn has_topics_enabled_option<T: Into<bool>>(self, val: Option<T>) -> Self {
let mut this = self;
this.has_topics_enabled = val.map(Into::into);
this
}
/// `true`, if the bot allows users to create and delete topics in private chats. Returned only in getMe.
#[must_use]
pub fn allows_users_to_create_topics<T: Into<bool>>(self, val: T) -> Self {
let mut this = self;
this.allows_users_to_create_topics = Some(val.into());
this
}
/// `true`, if the bot allows users to create and delete topics in private chats. Returned only in getMe.
#[must_use]
pub fn allows_users_to_create_topics_option<T: Into<bool>>(self, val: Option<T>) -> Self {
let mut this = self;
this.allows_users_to_create_topics = val.map(Into::into);
this
}
/// `true`, if other bots can be created to be controlled by the bot. Returned only in getMe.
#[must_use]
pub fn can_manage_bots<T: Into<bool>>(self, val: T) -> Self {
let mut this = self;
this.can_manage_bots = Some(val.into());
this
}
/// `true`, if other bots can be created to be controlled by the bot. Returned only in getMe.
#[must_use]
pub fn can_manage_bots_option<T: Into<bool>>(self, val: Option<T>) -> Self {
let mut this = self;
this.can_manage_bots = val.map(Into::into);
this
}
}