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