| 36 | |
| 37 | #[derive(Debug)] |
| 38 | enum DecodeState { |
| 39 | Cmd, |
| 40 | Set { |
| 41 | fh: NamedTempFile, |
| 42 | key: Vec<u8>, |
| 43 | dsz: usize, |
| 44 | rem: usize, |
| 45 | }, |
| 46 | } |
| 47 | |
| 48 | pub struct RedisCodec { |
| 49 | cache: Arc<CacheT>, |
nothing calls this directly
no outgoing calls
no test coverage detected