[][src]Struct bdrck::testing::fn_instrumentation::FnInstrumentation

pub struct FnInstrumentation { /* fields omitted */ }

This is a structure which contains the state relating to instrumenting a function. The idea is that you would mutate it via its member functions to e.g. record information about a function call. Because it has internal synchronization, this can be done without retaining a mutable reference.

Methods

impl FnInstrumentation[src]

pub fn new() -> FnInstrumentation[src]

Construct a new instrumentation state, with default-initialized values.

pub fn record_call(&self)[src]

Record that the function being instrumented was called by incrementing a counter.

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

Return the current number of calls recorded.

Auto Trait Implementations

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,