pub enum ConvergenceState {
Active,
Cooling,
Converged,
Awakened,
}Expand description
Governor state. Enum => state ∈ GovernorStates holds by construction.
Variants§
Active
Learning remains active.
Cooling
A peak was observed and the recent average is declining.
Converged
The recent average is below the convergence threshold.
Awakened
Activity after convergence exceeded the awakening threshold.
Trait Implementations§
impl Copy for GovState
impl Eq for GovState
impl StructuralPartialEq for GovState
Auto Trait Implementations§
impl Freeze for GovState
impl RefUnwindSafe for GovState
impl Send for GovState
impl Sync for GovState
impl Unpin for GovState
impl UnsafeUnpin for GovState
impl UnwindSafe for GovState
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more