Struct RegexGeneratorStrategy

struct RegexGeneratorStrategy<T>(_)
where
    T: fmt::Debug

Strategy which generates values (i.e., String or Vec<u8>) matching a regular expression.

Created by various functions in this module.

Implementations

impl<T> Any for RegexGeneratorStrategy<T>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for RegexGeneratorStrategy<T>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for RegexGeneratorStrategy<T>

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> Debug for RegexGeneratorStrategy<T>

fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result

impl<T> Freeze for RegexGeneratorStrategy<T>

impl<T> From for RegexGeneratorStrategy<T>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> RefUnwindSafe for RegexGeneratorStrategy<T>

impl<T> Send for RegexGeneratorStrategy<T>

impl<T> Strategy for RegexGeneratorStrategy<T>

fn new_tree(self: &Self, runner: &mut TestRunner) -> NewTree<Self>

impl<T> Sync for RegexGeneratorStrategy<T>

impl<T> Unpin for RegexGeneratorStrategy<T>

impl<T> UnwindSafe for RegexGeneratorStrategy<T>

impl<T, U> Into for RegexGeneratorStrategy<T>

fn into(self: Self) -> U

Calls U::from(self).

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

impl<T, U> TryFrom for RegexGeneratorStrategy<T>

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for RegexGeneratorStrategy<T>

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>

impl<V, T> VZip for RegexGeneratorStrategy<T>

fn vzip(self: Self) -> V