pub trait Activatable: Debug + Send {
// Required method
fn activate(&self);
}Expand description
A trait for types that can be used to activate threads.
pub trait Activatable: Debug + Send {
// Required method
fn activate(&self);
}A trait for types that can be used to activate threads.