Trait liar::runner::Runner [] [src]

pub trait Runner<S> {
    fn run<B, Ret>(&mut self, bench: &mut B) -> Sample<S>
    where
        B: Benchmark<Ret>
; }

Executes a benchmark target to record a sample.

Required Methods

Runs and measures a target function according to the implementor's strategy, recording a sample of timing measurements.

Implementors