pub struct RunMeta {
pub mode: String,
pub elapsed_ms: f64,
pub curve_duration_ms: Option<f64>,
pub template_generation_ms: Option<f64>,
}Expand description
Top-level metadata about the run’s execution mode and timings.
Fields§
§mode: StringExecution mode: "fixed" or "curve".
elapsed_ms: f64Total wall-clock elapsed time for the run in milliseconds.
curve_duration_ms: Option<f64>Total curve duration in milliseconds. null in fixed mode.
template_generation_ms: Option<f64>Time spent pre-generating template bodies in milliseconds. null when no
request template was used.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunMeta
impl RefUnwindSafe for RunMeta
impl Send for RunMeta
impl Sync for RunMeta
impl Unpin for RunMeta
impl UnsafeUnpin for RunMeta
impl UnwindSafe for RunMeta
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