(&mut self, cmd: u8)
| 235 | } |
| 236 | #[inline(always)] |
| 237 | pub fn parse_cmd(&mut self, cmd: u8) { |
| 238 | match cmd { |
| 239 | 1 => self.parse_packet(), |
| 240 | 2 => self.parse_packet(), |
| 241 | 6 => self.parse_datatable(), |
| 242 | _ => {} |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | #[inline(always)] |
| 247 | pub fn parse_packet(&mut self) { |
no test coverage detected