Skip to main content

Task

Struct Task 

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

A spawned task or stream. Dropping it detaches — the work keeps running and its callback keeps firing. Keep it to cancel when whatever the callback would write is going away.

Deliberately !Send: the callback it controls lives in the spawning thread’s registry, so a handle taken to another thread could only cancel that thread’s tasks instead.

Implementations§

Source§

impl Task

Source

pub fn cancel(self)

Drops the callback, so anything the worker still posts is discarded. The thread is not interrupted — std::thread has no way to do that — but a spawn_stream worker polling Emitter::is_cancelled can stop on its own.

Source

pub fn is_pending(&self) -> bool

Whether the callback is still registered — the value has yet to arrive, or the stream is still open.

Auto Trait Implementations§

§

impl !Send for Task

§

impl !Sync for Task

§

impl Freeze for Task

§

impl RefUnwindSafe for Task

§

impl Unpin for Task

§

impl UnsafeUnpin for Task

§

impl UnwindSafe for Task

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.