[][src]Struct glean_core::metrics::StringMetric

pub struct StringMetric { /* fields omitted */ }

A string metric.

Record an Unicode string value with arbitrary content. Strings are length-limited to MAX_LENGTH_VALUE bytes.

Methods

impl StringMetric[src]

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

Create a new string metric.

pub fn set<S: Into<String>>(&self, glean: &Glean, value: S)[src]

Set to the specified value.

Arguments

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

Notes

Truncates the value if it is longer than MAX_STRING_LENGTH bytes and logs an error.

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 StringMetric[src]

impl Debug for StringMetric[src]

impl MetricType for StringMetric[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>,