[][src]Struct benchmarking::Measurer

pub struct Measurer { /* fields omitted */ }

To measure the execution time.

Methods

impl Measurer[src]

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

Get the sequence of the current measurement.

pub fn get_result(&self) -> Option<&MeasureResult>[src]

Get the result.

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

Check this measurer whether it is measured.

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

Check this measurer whether it is passed.

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

Measure a function by executing it once.

pub fn pass(&mut self)[src]

Pass the current measurement.

Trait Implementations

impl Default for Measurer[src]

impl Debug for Measurer[src]

Auto Trait Implementations

Blanket Implementations

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.

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]