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

pub struct UuidMetric { /* fields omitted */ }

An UUID metric.

Stores UUID v4 (randomly generated) values.

Implementations

impl UuidMetric[src]

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

Creates a new UUID metric

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

Sets to the specified value.

Arguments

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

pub fn set_from_str(&self, glean: &Glean, value: &str)[src]

Sets to the specified value, from a string.

This should only be used from FFI. When calling directly from Rust, it is better to use set.

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]

Generates a new random [Uuid'] and sets 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<Uuid>[src]

Test-only API (exported for FFI purposes).

Gets 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.