pub struct Timer<'a> { /* private fields */ }
Expand description

A console time measurement.

See Timer::scope for starting a labeled time measurement of code wrapped in a closure.

Implementations

Starts a console time measurement. The measurement ends when the constructed ConsoleTimer object is dropped.

Example
use gloo_console::Timer;

let _timer = Timer::new("foo");

Starts a scoped console time measurement

Example
use gloo_console::Timer;

let value = Timer::scope("foo", || {
    // Code to measure here
});

Trait Implementations

Formats the value using the given formatter. Read more

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.