Struct glean_core::metrics::EventMetric[][src]

pub struct EventMetric { /* fields omitted */ }
Expand description

An event metric.

Events allow recording of e.g. individual occurences of user actions, say every time a view was open and from where. Each time you record an event, it records a timestamp, the event’s name and a set of custom values.

Implementations

Creates a new event metric.

Records an event.

Arguments
  • glean - The Glean instance this metric belongs to.
  • timestamp - A monotonically increasing timestamp, in milliseconds. This must be provided since the actual recording of the event may happen some time later than the moment the event occurred.
  • extra - A HashMap of (key, value) pairs. The key is an index into the metric’s allowed_extra_keys vector where the key’s string is looked up. If any key index is out of range, an error is reported and no event is recorded.

Test-only API (exported for FFI purposes).

Tests whether there are currently stored events for this event metric.

This doesn’t clear the stored value.

Test-only API (exported for FFI purposes).

Get the vector of currently stored events for this event metric.

This doesn’t clear the stored value.

Test-only API (exported for FFI purposes).

Gets the currently stored events for this event metric as a JSON-encoded string.

This doesn’t clear the stored value.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Access the stored metadata

Access the stored metadata mutable

Whether this metric should currently be recorded 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 resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

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.