[][src]Struct bolero_engine::test_failure::TestFailure

pub struct TestFailure<Input> {
    pub error: PanicError,
    pub input: Input,
    pub seed: Option<u64>,
}

Contains information about a test failure

Fields

error: PanicErrorinput: Inputseed: Option<u64>

Trait Implementations

impl<Input: Debug> Debug for TestFailure<Input>[src]

impl<Input: Debug> Display for TestFailure<Input>[src]

impl<Input: Debug> Error for TestFailure<Input>[src]

Auto Trait Implementations

impl<Input> RefUnwindSafe for TestFailure<Input> where
    Input: RefUnwindSafe

impl<Input> Send for TestFailure<Input> where
    Input: Send

impl<Input> Sync for TestFailure<Input> where
    Input: Sync

impl<Input> Unpin for TestFailure<Input> where
    Input: Unpin

impl<Input> UnwindSafe for TestFailure<Input> where
    Input: 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> ToString for T where
    T: Display + ?Sized
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,