pub struct RunRecord {
pub records: Vec<RequestRecord>,
pub duration_s: f64,
}Expand description
One independent run of the bench workload.
Fields§
§records: Vec<RequestRecord>§duration_s: f64Wall-clock duration of the run, in seconds. Used as the denominator for throughput / goodput.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunRecord
impl RefUnwindSafe for RunRecord
impl Send for RunRecord
impl Sync for RunRecord
impl Unpin for RunRecord
impl UnsafeUnpin for RunRecord
impl UnwindSafe for RunRecord
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