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
#[cfg(test)]
#[path = "./types_test.rs"]
mod types_test;
use std::error::Error;
use std::fmt;
use std::fmt::Display;
#[derive(Debug)]
pub enum RedisError {
RedisError(redis::RedisError),
Description(&'static str),
}
impl Display for RedisError {
fn fmt(&self, format: &mut fmt::Formatter) -> Result<(), fmt::Error> {
match self {
Self::RedisError(ref cause) => cause.fmt(format),
Self::Description(description) => description.fmt(format),
}
}
}
impl Error for RedisError {
fn source(&self) -> Option<&(dyn Error + 'static)> {
match self {
Self::RedisError(error) => Some(error),
Self::Description(_) => None,
}
}
}
pub trait RedisArg: Sized + ToString {}
macro_rules! as_redis_arg {
($t:ty) => {
impl RedisArg for $t {}
};
}
impl<'a> RedisArg for &'a str {}
as_redis_arg!(u8);
as_redis_arg!(i8);
as_redis_arg!(i16);
as_redis_arg!(u16);
as_redis_arg!(i32);
as_redis_arg!(u32);
as_redis_arg!(i64);
as_redis_arg!(u64);
as_redis_arg!(i128);
as_redis_arg!(u128);
as_redis_arg!(f32);
as_redis_arg!(f64);
as_redis_arg!(isize);
as_redis_arg!(usize);
as_redis_arg!(bool);
pub type Message = redis::Msg;
pub type RedisResult<T> = Result<T, RedisError>;
pub type RedisEmptyResult = RedisResult<()>;
pub type RedisStringResult = RedisResult<String>;
pub type RedisBoolResult = RedisResult<bool>;
#[derive(Debug, Clone, Copy, Default)]
pub struct Interrupts {
pub stop: bool,
pub next_polling_time: Option<u64>,
}
impl Interrupts {
pub fn new() -> Interrupts {
Default::default()
}
}