[][src]Struct restartables::Success

pub struct Success<T> {
    pub value: T,
    pub duration: Duration,
    pub restarts: usize,
}

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

impl<T: Debug> Debug for Success<T>[src]

Auto Trait Implementations

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.