pub enum SimulationPhase {
Initializing,
WarmUp,
Running,
RampDown,
Finalizing,
Completed,
}Expand description
Current phase of the simulation.
Variants§
Initializing
Initializing resources.
WarmUp
Warming up (pre-test stabilization).
Running
Main test execution.
RampDown
Ramping down.
Finalizing
Collecting final metrics.
Completed
Completed.
Trait Implementations§
Source§impl Clone for SimulationPhase
impl Clone for SimulationPhase
Source§fn clone(&self) -> SimulationPhase
fn clone(&self) -> SimulationPhase
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 SimulationPhase
impl Debug for SimulationPhase
Source§impl<'de> Deserialize<'de> for SimulationPhase
impl<'de> Deserialize<'de> for SimulationPhase
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SimulationPhase
impl PartialEq for SimulationPhase
Source§impl Serialize for SimulationPhase
impl Serialize for SimulationPhase
impl Copy for SimulationPhase
impl Eq for SimulationPhase
impl StructuralPartialEq for SimulationPhase
Auto Trait Implementations§
impl Freeze for SimulationPhase
impl RefUnwindSafe for SimulationPhase
impl Send for SimulationPhase
impl Sync for SimulationPhase
impl Unpin for SimulationPhase
impl UnsafeUnpin for SimulationPhase
impl UnwindSafe for SimulationPhase
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.