pub struct CancellationToken(/* private fields */);Expand description
Cooperative cancellation handle. Clone is cheap (just an Arc).
is_cancelled() is a non-blocking check that providers can poll between
chunks of work. cancelled() returns a future that resolves the moment
cancellation flips, suitable for tokio::select! or futures::select!
against an upstream operation.
Implementations§
Source§impl CancellationToken
impl CancellationToken
Sourcepub fn cancel(&self)
pub fn cancel(&self)
Flip the cancellation flag and wake every pending cancelled() future.
Idempotent — calling twice is harmless.
Sourcepub fn is_cancelled(&self) -> bool
pub fn is_cancelled(&self) -> bool
Non-blocking check — returns true once cancel() has been called.
Trait Implementations§
Source§impl Clone for CancellationToken
impl Clone for CancellationToken
Source§fn clone(&self) -> CancellationToken
fn clone(&self) -> CancellationToken
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CancellationToken
impl Debug for CancellationToken
Auto Trait Implementations§
impl Freeze for CancellationToken
impl RefUnwindSafe for CancellationToken
impl Send for CancellationToken
impl Sync for CancellationToken
impl Unpin for CancellationToken
impl UnsafeUnpin for CancellationToken
impl UnwindSafe for CancellationToken
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more