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
use crate::Message;
use futures::channel::{
mpsc::{self, TrySendError},
oneshot,
};
use std::result;
pub type Result<T> = result::Result<T, Error>;
#[derive(Debug)]
pub enum Error {
IO(std::io::Error),
Redis(String),
Parse(String),
Send(String),
SendError(String),
Canceled(oneshot::Canceled),
Internal(String),
Network(String),
}
impl std::fmt::Display for Error {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Error::IO(e) => f.write_fmt(format_args!("IO: {}", e)),
Error::Redis(e) => f.write_fmt(format_args!("Redis: {}", e)),
Error::Parse(e) => f.write_fmt(format_args!("Parse: {}", e)),
Error::Send(e) => f.write_fmt(format_args!("Send: {}", e)),
Error::SendError(e) => f.write_fmt(format_args!("SendError: {}", e)),
Error::Canceled(e) => f.write_fmt(format_args!("oneshot::Canceled: {}", e)),
Error::Internal(e) => f.write_fmt(format_args!("Internal error: {}", e)),
Error::Network(e) => f.write_fmt(format_args!("Network error: {}", e)),
}
}
}
impl From<std::io::Error> for Error {
fn from(e: std::io::Error) -> Self {
Error::IO(e)
}
}
impl From<TrySendError<Message>> for Error {
fn from(e: TrySendError<Message>) -> Self {
Error::Send(e.to_string())
}
}
impl From<oneshot::Canceled> for Error {
fn from(e: oneshot::Canceled) -> Self {
Error::Canceled(e)
}
}
impl From<mpsc::SendError> for Error {
fn from(e: mpsc::SendError) -> Self {
Error::SendError(e.to_string())
}
}