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
impl Task
Sourcepub fn cancel(self)
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.
Sourcepub fn is_pending(&self) -> bool
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> 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