[][src]Struct bolero_generator::AndThenGenerator

pub struct AndThenGenerator<Generator, AndThen> { /* fields omitted */ }

Trait Implementations

impl<G: ValueGenerator, M: Fn(G::Output, &mut dyn RngCore) -> T, T> ValueGenerator for AndThenGenerator<G, M>[src]

type Output = T

impl<Generator: Debug, AndThen: Debug> Debug for AndThenGenerator<Generator, AndThen>[src]

impl<Generator: Clone, AndThen: Clone> Clone for AndThenGenerator<Generator, AndThen>[src]

Auto Trait Implementations

impl<Generator, AndThen> Unpin for AndThenGenerator<Generator, AndThen> where
    AndThen: Unpin,
    Generator: Unpin

impl<Generator, AndThen> Send for AndThenGenerator<Generator, AndThen> where
    AndThen: Send,
    Generator: Send

impl<Generator, AndThen> Sync for AndThenGenerator<Generator, AndThen> where
    AndThen: Sync,
    Generator: Sync

impl<Generator, AndThen> UnwindSafe for AndThenGenerator<Generator, AndThen> where
    AndThen: UnwindSafe,
    Generator: UnwindSafe

impl<Generator, AndThen> RefUnwindSafe for AndThenGenerator<Generator, AndThen> where
    AndThen: RefUnwindSafe,
    Generator: RefUnwindSafe

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.