(&self, fg_move: Command, fg_back: Command)
| 36 | } |
| 37 | |
| 38 | pub(crate) fn send_loop(&self, fg_move: Command, fg_back: Command) { |
| 39 | try_send_loop(&self.delay_move_tx.delay_tx, fg_back); |
| 40 | try_send_loop(&self.loop_move_tx.delay_tx, fg_move); |
| 41 | } |
| 42 | |
| 43 | pub(crate) fn clear_all(&self) { |
| 44 | self.delay_tx |
no test coverage detected