[][src]Trait un_algebra::tests::strategy::statics::MapFn

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

Essentially Fn (T) -> Output.

Associated Types

Loading content...

Required methods

fn apply(&self, t: T) -> Self::Output

Map T to Output.

Loading content...

Implementations on Foreign Types

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

type Output = O

Loading content...

Implementors

Loading content...