| 8 | |
| 9 | #[derive(Debug, PartialEq)] |
| 10 | pub enum Cmd<'a> { |
| 11 | Wait, |
| 12 | Ping, |
| 13 | Auth(&'a [u8]), |
| 14 | Get(&'a [u8]), |
| 15 | Set(&'a [u8], u32), |
| 16 | ConfigGet(&'a [u8]), |
| 17 | ClientSetInfo(&'a [u8], Option<&'a [u8]>), |
| 18 | Info, |
| 19 | Disconnect, |
| 20 | } |
| 21 | |
| 22 | // get |
| 23 | // set_noreply |
nothing calls this directly
no outgoing calls
no test coverage detected