Type Alias zebra_test::prelude::prop::strategy::LazyJustFn

pub type LazyJustFn<V> = LazyJust<V, fn() -> V>;
Expand description

Shorthand for LazyJust<T, fn () -> T>.

Aliased Type§

struct LazyJustFn<V> {
    function: fn() -> V,
}

Fields§

§function: fn() -> V