Skip to main content

SpawnHandleInner

Trait SpawnHandleInner 

Source
pub trait SpawnHandleInner: Send + 'static {
    // Required methods
    fn abort(&self);
    fn is_finished(&self) -> bool;
}
Expand description

Implementation detail of SpawnHandle. Runtime adapters implement this on their concrete handle type.

Required Methods§

Source

fn abort(&self)

Source

fn is_finished(&self) -> bool

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§