Trait proptest::strategy::statics::MapFn[][src]

pub trait MapFn<T> {
    type Output: Debug;
    fn apply(&self, t: T) -> Self::Output;
}

Essentially Fn (T) -> Output.

Associated Types

Required Methods

Map T to Output.

Implementations on Foreign Types

impl<I, O: Debug> MapFn<I> for fn(_: I) -> O
[src]

Implementors