pub trait SettableSystem: System {
    fn set_scale(&self, scale: Scale);
}
Expand description

Implementors of this trait are systems with a stored scale.

Required Methods

Change the number of active and inactive threads in the system, or shut the system down.

Implementors