Struct gloo_console::Timer[][src]

pub struct Timer<'a> { /* fields omitted */ }
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

Performs the conversion.

Performs the conversion.

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.