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
use crate::types::chat;
use is_macro::Is;
use std::{
error::Error,
fmt::{self, Display, Formatter},
};
#[derive(Debug, Is)]
pub enum MethodCall {
Network(hyper::Error),
OutOfService,
Parse {
response: Vec<u8>,
error: serde_json::Error,
},
RequestError {
description: String,
error_code: u16,
migrate_to_chat_id: Option<chat::Id>,
retry_after: Option<u64>,
},
}
impl Display for MethodCall {
fn fmt(&self, formatter: &mut Formatter) -> fmt::Result {
match self {
Self::Network(error) => write!(
formatter,
"A method call failed because of a network error: {error}",
),
Self::OutOfService => write!(
formatter,
"A method call failed because Telegram is out of service.",
),
Self::Parse { response, error } => write!(
formatter,
"A method call failed because `tbot` failed to parse the \
response.\n\
\n\
The response was: {response:?}\n\
The error was: {error}",
),
Self::RequestError {
description,
error_code,
migrate_to_chat_id,
retry_after,
} => write!(
formatter,
"A method call failed because Telegram responded with an error \
{error_code} `{description}`. Additional information:\n\
\n\
- migrate_to_chat_id: {migrate_to_chat_id:?}\n\
- retry_after: {retry_after:?}",
),
}
}
}
impl Error for MethodCall {}
impl From<hyper::Error> for MethodCall {
#[must_use]
fn from(error: hyper::Error) -> Self {
Self::Network(error)
}
}