pub struct Success<T> {
pub value: T,
pub duration: Duration,
pub restarts: usize,
}
Expand description
Value returned from a successful test, along with metrics.
If the future eventually resolves a value that passes the test, it returns it, along with some metrics. This struct combines the value returned, along with how long/how many restarts it took to get that value.
Fields§
§value: T
The success value returned by the test
duration: Duration
How much time elapsed while waiting for the future to successfully resolve
restarts: usize
How many times the future needed to be restarted before it successfully resolved
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Success<T>where
T: Freeze,
impl<T> RefUnwindSafe for Success<T>where
T: RefUnwindSafe,
impl<T> Send for Success<T>where
T: Send,
impl<T> Sync for Success<T>where
T: Sync,
impl<T> Unpin for Success<T>where
T: Unpin,
impl<T> UnwindSafe for Success<T>where
T: UnwindSafe,
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