Skip to main content

JoinHandle

Struct JoinHandle 

Source
pub struct JoinHandle { /* private fields */ }
Expand description

A handle to a spawned task, allowing individual cancellation.

Created by TaskScope::spawn and TaskScope::spawn_with_priority. Dropping the handle does not cancel the task — call cancel explicitly, or drop the owning TaskScope to cancel all tasks at once.

Implementations§

Source§

impl JoinHandle

Source

pub fn cancel(&self)

Cancel this specific task.

Cancellation drops the task’s Future on the next executor flush — it is cooperative (.await-bound), same as all async cancellation in Rust.

No-op if the task has already completed or was spawned into an already-cancelled scope.

Source

pub fn is_finished(&self) -> bool

Return true if the task has completed (normally or via cancellation).

Returns true for handles created by spawning into an already-cancelled scope (they never had a real task).

Source

pub fn task_id(&self) -> Option<u64>

Return the id of the wrapped task, or None if the handle was created by spawning into an already-cancelled scope.

Trait Implementations§

Source§

impl Debug for JoinHandle

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.