[][src]Struct bolero_generator::combinator::FilterMapGenerator

pub struct FilterMapGenerator<Generator, FilterMap> { /* fields omitted */ }

Trait Implementations

impl<Generator: Clone, FilterMap: Clone> Clone for FilterMapGenerator<Generator, FilterMap>[src]

impl<Generator: Debug, FilterMap: Debug> Debug for FilterMapGenerator<Generator, FilterMap>[src]

impl<G: ValueGenerator, F: Fn(G::Output) -> Option<T>, T> ValueGenerator for FilterMapGenerator<G, F>[src]

type Output = T

Auto Trait Implementations

impl<Generator, FilterMap> RefUnwindSafe for FilterMapGenerator<Generator, FilterMap> where
    FilterMap: RefUnwindSafe,
    Generator: RefUnwindSafe

impl<Generator, FilterMap> Send for FilterMapGenerator<Generator, FilterMap> where
    FilterMap: Send,
    Generator: Send

impl<Generator, FilterMap> Sync for FilterMapGenerator<Generator, FilterMap> where
    FilterMap: Sync,
    Generator: Sync

impl<Generator, FilterMap> Unpin for FilterMapGenerator<Generator, FilterMap> where
    FilterMap: Unpin,
    Generator: Unpin

impl<Generator, FilterMap> UnwindSafe for FilterMapGenerator<Generator, FilterMap> where
    FilterMap: UnwindSafe,
    Generator: 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.