pub trait CancellationFlag {
    fn check(&self, at: &'static str) -> Result<(), CancellationError>;
}
Expand description

Trait to signal that the execution is cancelled

Required Methods

Implementors