[][src]Struct bolero_engine::BorrowedGeneratorTest

pub struct BorrowedGeneratorTest<F, G, V> { /* fields omitted */ }

Implementations

impl<F, G, V> BorrowedGeneratorTest<F, G, V>[src]

pub fn new(fun: F, gen: G) -> Self[src]

Trait Implementations

impl<F: RefUnwindSafe + FnMut(&G::Output) -> Ret, G: RefUnwindSafe + ValueGenerator, Ret> Test for BorrowedGeneratorTest<F, G, G::Output> where
    Ret: IntoTestResult,
    G::Output: RefUnwindSafe + Debug
[src]

type Value = G::Output

The input value for the test case

Auto Trait Implementations

impl<F, G, V> RefUnwindSafe for BorrowedGeneratorTest<F, G, V> where
    F: RefUnwindSafe,
    G: RefUnwindSafe,
    V: RefUnwindSafe

impl<F, G, V> Send for BorrowedGeneratorTest<F, G, V> where
    F: Send,
    G: Send,
    V: Send

impl<F, G, V> Sync for BorrowedGeneratorTest<F, G, V> where
    F: Sync,
    G: Sync,
    V: Sync

impl<F, G, V> Unpin for BorrowedGeneratorTest<F, G, V> where
    F: Unpin,
    G: Unpin,
    V: Unpin

impl<F, G, V> UnwindSafe for BorrowedGeneratorTest<F, G, V> where
    F: UnwindSafe,
    G: UnwindSafe,
    V: 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.

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