Struct suppositions::generators::ResultGenerator [] [src]

pub struct ResultGenerator<G, H>(_, _);

See result

Trait Implementations

impl<G: Debug, H: Debug> Debug for ResultGenerator<G, H>
[src]

[src]

Formats the value using the given formatter.

impl<G: Clone, H: Clone> Clone for ResultGenerator<G, H>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<G: Generator, H: Generator> Generator for ResultGenerator<G, H>
[src]

The type of values that we can generate.

[src]

This consumes a stream of bytes given by source, and generates a value of type Self::Item. Read more

[src]

A convenience function to generate a value directly from an InfoPool.

[src]

Returns a generator that will skip values generated by self when the predicate pred returns false. Read more

[src]

A generator that takes the values generated by self; then allows fun to either Skip them (by returning Err(DataError::SkipItem) or transform (by returning Ok(val)). Read more

[src]

A generator that takes the generated values of self and pipes them through fun. Read more