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
use crate::types::{chat, user};
use is_macro::Is;
use serde::Serialize;
#[derive(Debug, PartialEq, Eq, Clone, Hash, Serialize, Is)]
#[serde(untagged)]
#[non_exhaustive]
#[must_use]
pub enum ChatId {
Id(chat::Id),
Username(String),
}
impl From<i64> for ChatId {
fn from(id: i64) -> Self {
Self::Id(chat::Id(id))
}
}
impl From<chat::Id> for ChatId {
fn from(id: chat::Id) -> Self {
Self::Id(id)
}
}
impl From<user::Id> for ChatId {
fn from(id: user::Id) -> Self {
Self::Id(chat::Id(id.0))
}
}
impl From<String> for ChatId {
fn from(username: String) -> Self {
Self::Username(username)
}
}
impl<'a> From<&'a String> for ChatId {
fn from(username: &'a String) -> Self {
Self::Username(username.clone())
}
}
impl<'a> From<&'a str> for ChatId {
fn from(username: &'a str) -> Self {
Self::Username(username.to_owned())
}
}
#[allow(clippy::module_name_repetitions)]
pub trait ImplicitChatId: Into<ChatId> {}
impl ImplicitChatId for ChatId {}
impl ImplicitChatId for chat::Id {}
impl ImplicitChatId for user::Id {}