[][src]Struct glean_core::metrics::UuidMetric

pub struct UuidMetric { /* fields omitted */ }

An UUID metric.

Stores UUID v4 (randomly generated) values.

Methods

impl UuidMetric[src]

pub fn new(meta: CommonMetricData) -> Self[src]

Create a new UUID metric

pub fn set(&self, glean: &Glean, value: Uuid)[src]

Set to the specified value.

Arguments

  • glean - The Glean instance this metric belongs to.
  • value - The UUID to set the metric to.

pub fn generate_and_set(&self, storage: &Glean) -> Uuid[src]

Generate a new random UUID and set the metric to it.

Arguments

  • glean - The Glean instance this metric belongs to.

pub fn test_get_value(
    &self,
    glean: &Glean,
    storage_name: &str
) -> Option<String>
[src]

Test-only API (exported for FFI purposes).

Get the currently stored value as a string.

This doesn't clear the stored value.

Trait Implementations

impl Clone for UuidMetric[src]

impl Debug for UuidMetric[src]

impl MetricType for UuidMetric[src]

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,