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
use std::fmt;
use std::io;
use url::ParseError;
#[cfg(feature = "remote_list")]
use std::net::TcpStream;
#[cfg(feature = "remote_list")]
use native_tls::{Error as TlsError, HandshakeError};
pub type Result<T> = ::std::result::Result<T, Error>;
#[derive(Debug)]
pub struct Error(
pub ErrorKind,
);
impl std::error::Error for Error {}
impl Error {
pub fn kind(&self) -> &ErrorKind {
&self.0
}
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.0)
}
}
#[derive(Debug)]
pub enum ErrorKind {
Io(::std::io::Error),
Url(::url::ParseError),
#[cfg(feature = "remote_list")]
Tls(::native_tls::Error),
#[cfg(feature = "remote_list")]
Handshake(HandshakeError<TcpStream>),
Msg(String),
UnsupportedScheme,
InvalidList,
NoHost,
NoPort,
InvalidHost,
InvalidEmail,
InvalidRule(String),
InvalidDomain(String),
Uts46(::idna::Errors),
#[doc(hidden)]
__Nonexhaustive {},
}
impl fmt::Display for ErrorKind {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
ErrorKind::Io(e) => write!(f, "{}", e),
ErrorKind::Url(e) => write!(f, "{}", e),
#[cfg(feature = "remote_list")]
ErrorKind::Tls(e) => write!(f, "{}", e),
#[cfg(feature = "remote_list")]
ErrorKind::Handshake(e) => write!(f, "{}", e),
ErrorKind::Msg(e) => write!(f, "{}", e),
ErrorKind::UnsupportedScheme => write!(f, "UnsupportedScheme"),
ErrorKind::InvalidList => write!(f, "InvalidList"),
ErrorKind::NoHost => write!(f, "NoHost"),
ErrorKind::NoPort => write!(f, "NoPort"),
ErrorKind::InvalidHost => write!(f, "InvalidHost"),
ErrorKind::InvalidEmail => write!(f, "InvalidEmail"),
ErrorKind::InvalidRule(t) => write!(f, "invalid rule: '{}'", t),
ErrorKind::InvalidDomain(t) => write!(f, "invalid domain: '{}'", t),
ErrorKind::Uts46(e) => write!(f, "UTS #46 processing error: '{:?}'", e),
ErrorKind::__Nonexhaustive {} => write!(f, "__Nonexhaustive"),
}
}
}
impl From<ErrorKind> for Error {
fn from(kind: ErrorKind) -> Self {
Error(kind)
}
}
impl From<io::Error> for Error {
fn from(e: io::Error) -> Self {
Error(ErrorKind::Io(e))
}
}
impl From<ParseError> for Error {
fn from(e: url::ParseError) -> Self {
Error(ErrorKind::Url(e))
}
}
#[cfg(feature = "remote_list")]
impl From<TlsError> for Error {
fn from(e: TlsError) -> Self {
Error(ErrorKind::Tls(e))
}
}
#[cfg(feature = "remote_list")]
impl From<HandshakeError<TcpStream>> for Error {
fn from(e: HandshakeError<TcpStream>) -> Self {
Error(ErrorKind::Handshake(e))
}
}