(&mut self, index: usize)
| 148 | self.read_block |
| 149 | } |
| 150 | |
| 151 | pub(crate) fn next_command(&mut self) -> Option<&Commands> { |
| 152 | let command = self.commands.get(self.current_block); |
| 153 | if self.read_block <= self.current_block { |
| 154 | self.read_block += 1; |
| 155 | } |