[][src]Struct rustc_test::Bencher

pub struct Bencher {
    pub bytes: u64,
    // some fields omitted
}

Manager of the benchmarking runs.

This is fed into functions marked with #[bench] to allow for set-up & tear-down before running a piece of code repeatedly via a call to iter.

Fields

bytes: u64

Implementations

impl Bencher[src]

pub fn iter<T, F>(&mut self, inner: F) where
    F: FnMut() -> T, 
[src]

Callback for benchmark functions to run in their body.

pub fn ns_elapsed(&mut self) -> u64[src]

pub fn ns_per_iter(&mut self) -> u64[src]

pub fn bench_n<F>(&mut self, n: u64, f: F) where
    F: FnOnce(&mut Bencher), 
[src]

pub fn auto_bench<F>(&mut self, f: F) -> Summary where
    F: FnMut(&mut Bencher), 
[src]

Trait Implementations

impl Clone for Bencher[src]

impl Copy for Bencher[src]

Auto Trait Implementations

impl RefUnwindSafe for Bencher

impl Send for Bencher

impl Sync for Bencher

impl Unpin for Bencher

impl UnwindSafe for Bencher

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.