pub struct SimulatedWorkload {
pub arrival_pattern: ArrivalPattern,
pub size_distribution: SizeDistribution,
pub duration_seconds: u64,
}Expand description
Simulated workload for capacity planning
Fields§
§arrival_pattern: ArrivalPatternRequest arrival pattern
size_distribution: SizeDistributionRequest size distribution
duration_seconds: u64Simulation duration
Trait Implementations§
Source§impl Clone for SimulatedWorkload
impl Clone for SimulatedWorkload
Source§fn clone(&self) -> SimulatedWorkload
fn clone(&self) -> SimulatedWorkload
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 moreAuto Trait Implementations§
impl Freeze for SimulatedWorkload
impl RefUnwindSafe for SimulatedWorkload
impl Send for SimulatedWorkload
impl Sync for SimulatedWorkload
impl Unpin for SimulatedWorkload
impl UnsafeUnpin for SimulatedWorkload
impl UnwindSafe for SimulatedWorkload
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