pub struct IterationResult {
pub iteration: usize,
pub result: TestRunResult,
pub duration: Duration,
}Expand description
Result of a single stress iteration.
Fields§
§iteration: usize§result: TestRunResult§duration: DurationTrait Implementations§
Source§impl Clone for IterationResult
impl Clone for IterationResult
Source§fn clone(&self) -> IterationResult
fn clone(&self) -> IterationResult
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 IterationResult
impl RefUnwindSafe for IterationResult
impl Send for IterationResult
impl Sync for IterationResult
impl Unpin for IterationResult
impl UnsafeUnpin for IterationResult
impl UnwindSafe for IterationResult
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