pub enum Generator {
Show 15 variants AlphaLower, AlphaUpper, Digit, AlphaNumLower, AlphaNumUpper, HexUpper, HexLower, Char(char), Str(String), OneOf { v: Vec<Generator>, is_optional: bool, }, RepeatedN(Box<Generator>, usize), RepeatedMN(Box<Generator>, usizeusize), Sequence(Vec<Generator>), Transform { inner: Box<Generator>, transform_fn: TransformFn, }, Empty,
}
Expand description

The building block of generator-combinators.

A Generator can be constructed from strings, chars, and slices:

use generator_combinator::Generator;
let foo = Generator::from("foo"); // generates the string `foo`
let dot = Generator::from('.'); // generates the string `.`
let countries = Generator::from(&["US", "FR", "NZ", "CH"][..]); // generates strings `US`, `FR`, `NZ`, and `CH`.

Individual Generators can be combined as sequences with +, as variants with |, and with repetition with * usize and * (usize, usize):

use generator_combinator::Generator;
let foo = Generator::from("foo");
let bar = Generator::from("bar");
let foobar = foo.clone() + bar.clone(); // generates `foobar`
let foo_or_bar = foo.clone() | bar.clone(); // generates `foo`, `bar`
let foo_or_bar_x2 = foo_or_bar.clone() * 2; // generates `foofoo`, `foobar`, `barfoo`, `barbar`
let foo_x2_to_x4 = foo.clone() * (2, 4); // generates `foofoo`, `foofoofoo`, `foofoofoofoo`

Variants

AlphaLower

Lowercase ASCII letters (a-z)

AlphaUpper

Uppercase ASCII letters (A-Z)

Digit

Base-10 digits (0-9)

AlphaNumLower

Lowercase ASCII letters and digits (a-z0-9)

AlphaNumUpper

Uppercase ASCII letters and digits (A-Z0-9)

HexUpper

Uppercase hexadecimal values (0-9A-F)

HexLower

Lowercase hexadecimal values (0-9a-f)

Char(char)

Generates a char literal.

Str(String)

Generates a String literal.

Note that this is not a character class. Str("foo".into()) generates the exact string "foo"

OneOf

Fields

is_optional: bool

A choice between two or more patterns

As a regex, this would be, eg, (a|b|c)? (depending on is_optional)

RepeatedN(Box<Generator>, usize)

A pattern repeated exactly n times. This is the same as RepeatedMN(a, n, n)

As a regex, this would be a{n}

RepeatedMN(Box<Generator>, usizeusize)

A pattern repeated at least m times, as many as n times.

As a regex, this would be a{m,n}

Sequence(Vec<Generator>)

Two or more sequential patterns.

As a regex, this would be, eg, abc

Transform

Fields

inner: Box<Generator>
transform_fn: TransformFn

Wrap the current generator in a user-defined transformation.

Empty

Doesn’t generate anything

Implementations

Create a regular expression that represents the patterns generated.

The result here is currently best-guess. It’s not guaranteed valid, correct, idiomatic, etc.

The number of possible patterns represented.

Generates the String encoded by the specified num.

Panics if num exceeds the length given by Generator::len

Makes this Generator optional.

As a regex, this is the ? operator.

Provides an iterator across all possible values for this Generator.

Includes a user-defined transformation when generating values.

For a value specified by num, applies the callback cb for each of the component values for this Generator.

This may be preferable to [generate_one] if you want to see the individual components comprising the final string and/or if you want to avoid the memory allocation and freeing by creating the values.

Trait Implementations

The resulting type after applying the + operator.

Performs the + operation. Read more

Add operator for exact repetitions.

The following expressions are equivalent:

use generator_combinator::Generator;
let foostr = Generator::from("foofoo");
let foomul = Generator::from("foo") * 2;
let fooadd = Generator::from("foo") + Generator::from("foo");

The resulting type after applying the + operator.

Performs the + operation. Read more

The resulting type after applying the + operator.

Performs the + operation. Read more

The resulting type after applying the + operator.

Performs the + operation. Read more

Performs the += operation. Read more

Performs the += operation. Read more

Performs the += operation. Read more

Performs the += operation. Read more

The resulting type after applying the | operator.

Performs the | operation. Read more

The resulting type after applying the | operator.

Performs the | operation. Read more

The resulting type after applying the | operator.

Performs the | operation. Read more

The resulting type after applying the | operator.

Performs the | operation. Read more

Performs the |= operation. Read more

Performs the |= operation. Read more

Performs the |= operation. Read more

Performs the |= operation. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Mul operator for repetitions between m and n (inclusive)

use generator_combinator::Generator;
let foo_two_to_five_times = Generator::from("foo") * (2,5);

The resulting type after applying the * operator.

Performs the * operation. Read more

Mul operator for exact repetitions.

The following expressions are equivalent:

use generator_combinator::Generator;
let foostr = Generator::from("foofoo");
let foomul = Generator::from("foo") * 2;
let fooadd = Generator::from("foo") + Generator::from("foo");

The resulting type after applying the * operator.

Performs the * operation. Read more

Performs the *= operation. Read more

Performs the *= operation. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.