()
| 20 | |
| 21 | impl FtlCodec { |
| 22 | pub fn new() -> FtlCodec { |
| 23 | FtlCodec { |
| 24 | command_buffer: Vec::new(), |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | pub fn reset(&mut self) { |
| 29 | self.command_buffer = Vec::new(); |
nothing calls this directly
no outgoing calls
no test coverage detected