Execute
(&mut self, b: u8)
| 203 | |
| 204 | // Execute |
| 205 | fn execute(&mut self, b: u8) |
| 206 | { |
| 207 | let c = b as char; |
| 208 | match c |
| 209 | { |
| 210 | // Backspace |
| 211 | '\x08' => self.handle_backspace(), |
| 212 | |
| 213 | // Tab |
| 214 | '\t' => self.handle_tab(), |
| 215 | |
| 216 | _ => {}, |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | |
| 221 |
nothing calls this directly
no test coverage detected