pub struct SlowTest {
pub name: String,
pub avg_duration: Duration,
pub latest_duration: Duration,
pub trend: DurationTrend,
pub change_pct: f64,
}Expand description
A test that is getting slower over time.
Fields§
§name: StringTest name
avg_duration: DurationAverage duration over the period
latest_duration: DurationMost recent duration
trend: DurationTrendDuration trend
change_pct: f64Percentage change from average
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SlowTest
impl RefUnwindSafe for SlowTest
impl Send for SlowTest
impl Sync for SlowTest
impl Unpin for SlowTest
impl UnsafeUnpin for SlowTest
impl UnwindSafe for SlowTest
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