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
use hyper::StatusCode;
use is_macro::Is;
use std::{
error::Error,
fmt::{self, Display, Formatter},
io,
};
#[derive(Debug, Is)]
pub enum Download {
NoPath,
Network(hyper::Error),
InvalidStatusCode(StatusCode),
Io(io::Error),
}
impl Display for Download {
fn fmt(&self, formatter: &mut Formatter) -> fmt::Result {
match self {
Self::NoPath => write!(
formatter,
"A file could not be downloaded because of a missing `path`.",
),
Self::Network(error) => write!(
formatter,
"A file could not be downloaded because of a network error: \
{error}",
),
Self::InvalidStatusCode(code) => write!(
formatter,
"A file could not be downloaded because Telegram responded \
with {code} instead of 200 OK.",
),
Self::Io(error) => write!(
formatter,
"The server returned a local path to the file, but an error \
occured reading it: {error}",
),
}
}
}
impl Error for Download {}
impl From<hyper::Error> for Download {
#[must_use]
fn from(error: hyper::Error) -> Self {
Self::Network(error)
}
}
impl From<StatusCode> for Download {
#[must_use]
fn from(error: StatusCode) -> Self {
Self::InvalidStatusCode(error)
}
}
impl From<io::Error> for Download {
#[must_use]
fn from(error: io::Error) -> Self {
Self::Io(error)
}
}