[][src]Struct criterion_bencher_compat::Bencher

pub struct Bencher<'a, 'b> {
    pub bytes: u64,
    pub bencher: &'a mut Bencher<'b, WallTime>,
}

Stand-in for bencher::Bencher which uses Criterion.rs to perform the benchmark instead.

Fields

bytes: u64bencher: &'a mut Bencher<'b, WallTime>

Implementations

impl<'a, 'b> Bencher<'a, 'b>[src]

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

Callback for benchmark functions to run to perform the benchmark

Auto Trait Implementations

impl<'a, 'b> RefUnwindSafe for Bencher<'a, 'b>

impl<'a, 'b> Send for Bencher<'a, 'b>

impl<'a, 'b> Sync for Bencher<'a, 'b>

impl<'a, 'b> Unpin for Bencher<'a, 'b> where
    'b: 'a, 

impl<'a, 'b> !UnwindSafe for Bencher<'a, 'b>

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.