pub trait CancellationToken: Send + Sync {
    fn is_cancelled(&self) -> bool;
    fn wait_cancellation(&self) -> BoxFuture<'static, ()>;
}

Required methods

Implementors