Get the interrupt-pending flag. Setting this to `true` causes the next epoch yield to surface as an `Interrupted` event.
(&self)
| 307 | /// Get the interrupt-pending flag. Setting this to `true` causes |
| 308 | /// the next epoch yield to surface as an `Interrupted` event. |
| 309 | pub fn interrupt_pending(&self) -> &Arc<AtomicBool> { |
| 310 | &self.interrupt_pending |
| 311 | } |
| 312 | |
| 313 | async fn wait_for_initial(&mut self) -> Result<()> { |
| 314 | if let DebuggeeState::Initial = &self.state { |