pub trait Interruptor: Send + 'static {
// Required method
fn interrupt_trackable(&self) -> Result<(), Error>;
}Expand description
The interruptor used internally by a supervisor context or by a standalone routine.
Required Methods§
Sourcefn interrupt_trackable(&self) -> Result<(), Error>
fn interrupt_trackable(&self) -> Result<(), Error>
Interrupte a trackable runtime.