Enum test::TestFn [] [src]

pub enum TestFn {
    StaticTestFn(fn()),
    StaticBenchFn(fn(_: &mut Bencher)),
    DynTestFn(Box<FnBox() + Send>),
    DynBenchFn(Box<TDynBenchFn + 'static>),
}
🔬 This is a nightly-only experimental API. (test)

Variants

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

Trait Implementations

impl Debug for TestFn
[src]
[+]

[]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for TestFn

impl !Sync for TestFn