[][src]Enum rustc_test::TestFn

pub enum TestFn {
    StaticTestFn(fn()),
    StaticBenchFn(fn(_: &mut Bencher)),
    StaticMetricFn(fn(_: &mut MetricMap)),
    DynTestFn(Box<dyn FnMut() + Send>),
    DynMetricFn(Box<dyn FnMut(&mut MetricMap) + Send>),
    DynBenchFn(Box<dyn TDynBenchFn + 'static>),
}

Variants

StaticTestFn(fn())
StaticBenchFn(fn(_: &mut Bencher))
StaticMetricFn(fn(_: &mut MetricMap))
DynTestFn(Box<dyn FnMut() + Send>)
DynMetricFn(Box<dyn FnMut(&mut MetricMap) + Send>)
DynBenchFn(Box<dyn TDynBenchFn + 'static>)

Implementations

impl TestFn[src]

pub fn dyn_test_fn<F: FnOnce() + Send + 'static>(f: F) -> Self[src]

pub fn dyn_metric_fn<F: FnOnce(&mut MetricMap) + Send + 'static>(f: F) -> Self[src]

Trait Implementations

impl Debug for TestFn[src]

Auto Trait Implementations

impl !RefUnwindSafe for TestFn

impl Send for TestFn

impl !Sync for TestFn

impl Unpin for TestFn

impl !UnwindSafe for TestFn

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.