pub trait Thread { // Required methods fn abort(&self); fn is_finished(&self) -> bool; }
Abort a thread.
Check if a thread is finished.