pub enum ExecutionMode {
Fixed {
request_count: usize,
concurrency: usize,
},
Curve(LoadCurve),
}Expand description
Determines the execution strategy for a run.
Variants§
Fixed
Classic semaphore-based fixed-count execution.
Curve(LoadCurve)
Time-based dynamic VU execution driven by a LoadCurve.
Auto Trait Implementations§
impl Freeze for ExecutionMode
impl RefUnwindSafe for ExecutionMode
impl Send for ExecutionMode
impl Sync for ExecutionMode
impl Unpin for ExecutionMode
impl UnsafeUnpin for ExecutionMode
impl UnwindSafe for ExecutionMode
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