pub enum StressTestState {
Idle,
RampUp,
Running,
CoolDown,
Completed,
Aborted,
}Expand description
Stress test runner state
Variants§
Idle
Not started
RampUp
Ramping up intensity
Running
Running at full intensity
CoolDown
Cooling down
Completed
Completed
Aborted
Failed/aborted
Trait Implementations§
Source§impl Clone for StressTestState
impl Clone for StressTestState
Source§fn clone(&self) -> StressTestState
fn clone(&self) -> StressTestState
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StressTestState
impl Debug for StressTestState
Source§impl Display for StressTestState
impl Display for StressTestState
Source§impl PartialEq for StressTestState
impl PartialEq for StressTestState
impl Copy for StressTestState
impl Eq for StressTestState
impl StructuralPartialEq for StressTestState
Auto Trait Implementations§
impl Freeze for StressTestState
impl RefUnwindSafe for StressTestState
impl Send for StressTestState
impl Sync for StressTestState
impl Unpin for StressTestState
impl UnsafeUnpin for StressTestState
impl UnwindSafe for StressTestState
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