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§
fn abort(&self)
fn is_finished(&self) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".