[][src]Struct benchmarking::Measurer

pub struct Measurer { /* fields omitted */ }

To measure the execution time.

Methods

impl Measurer[src]

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

Get the sequence of the current measurement.

pub fn get_result(self) -> Option<Result<Duration, SystemTimeError>>[src]

Get the result.

pub fn is_measured(&self) -> bool[src]

Check this measurer whether it is measured.

pub fn measure<M>(&mut self, f: M) where
    M: FnOnce(), 
[src]

Measure a function by executing it once.

pub fn measure_loop<M, O: Into<MeasureLoopResult>>(&mut self, f: M) where
    M: FnMut(usize) -> O, 
[src]

Measure a function by continuous re-executing it, until it returns a MeasureLoopResult::Break.

pub fn measure_for_loop<M, T, I: IntoIterator<Item = T>, O: Into<MeasureLoopResult>>(
    &mut self,
    iter: I,
    f: M
) where
    M: FnMut(T) -> O, 
[src]

Measure a function by continuous re-executing it, until the input iterator has no next value.

pub fn measure_while_loop<M, C, O: Into<MeasureLoopResult>>(
    &mut self,
    g: C,
    f: M
) where
    M: FnMut(usize) -> O,
    C: FnMut(usize) -> bool
[src]

Measure a function by continuous re-executing it, until the conditional closure returns a false.

pub fn measure_iter<M, T, I: IntoIterator<Item = T>, O: Into<MeasureLoopResult>>(
    &mut self,
    iter: I,
    f: M
) where
    M: FnMut(T) -> O, 
[src]

Trait Implementations

impl Default for Measurer[src]

impl Debug for Measurer[src]

Auto Trait Implementations

impl Send for Measurer

impl Sync for Measurer

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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