blob: 5dd63485c519ddd6cc37791ca93670928092a39d (
plain)
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
|
use thiserror::Error as ThisError;
pub type Result<T> = std::result::Result<T, Error>;
#[derive(ThisError, Debug)]
pub enum Error {
#[error(transparent)]
IO(#[from] std::io::Error),
#[error("Try from endpoint Error")]
TryFromEndpoint,
#[error("invalid address {0}")]
InvalidAddress(String),
#[error("invalid endpoint {0}")]
InvalidEndpoint(String),
#[error("Parse endpoint error {0}")]
ParseEndpoint(String),
#[error("Timeout Error")]
Timeout,
#[error("Channel Send Error: {0}")]
ChannelSend(String),
#[error(transparent)]
ChannelRecv(#[from] smol::channel::RecvError),
#[error("Tls Error: {0}")]
Rustls(#[from] async_rustls::rustls::Error),
#[error("Invalid DNS Name: {0}")]
InvalidDnsNameError(#[from] async_rustls::rustls::client::InvalidDnsNameError),
#[error(transparent)]
KaryonsCore(#[from] karyons_core::error::Error),
}
impl<T> From<smol::channel::SendError<T>> for Error {
fn from(error: smol::channel::SendError<T>) -> Self {
Error::ChannelSend(error.to_string())
}
}
|