| 10 | |
| 11 | #[derive(Debug)] |
| 12 | pub enum RedisClientMsg { |
| 13 | Auth(Vec<u8>), |
| 14 | Info, |
| 15 | Ping, |
| 16 | Disconnect, |
| 17 | ConfigGet(String), |
| 18 | ClientSetInfo(String, Option<String>), |
| 19 | Get(Vec<u8>), |
| 20 | Set(Vec<u8>, usize, NamedTempFile), |
| 21 | } |
| 22 | |
| 23 | #[allow(dead_code)] |
| 24 | pub enum RedisServerMsg<'a> { |
nothing calls this directly
no outgoing calls
no test coverage detected