[][src]Struct glean_core::metrics::StringListMetric

pub struct StringListMetric { /* fields omitted */ }

A string list metric.

This allows appending a string value with arbitrary content to a list.

Methods

impl StringListMetric[src]

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

Create a new string list metric.

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

Add a new string to the list.

Arguments

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

Notes

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

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

Set to a specific list of strings.

Arguments

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

Notes

If passed an empty list, records an error and returns. Truncates the list if it is longer than MAX_LIST_LENGTH and logs an error. Truncates any value in the list if it is longer than MAX_STRING_LENGTH and logs an error.

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

Test-only API (exported for FFI purposes).

Get the currently-stored values.

This doesn't clear the stored value.

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

Test-only API (exported for FFI purposes).

Get the currently-stored values as a JSON String of the format ["string1", "string2", ...]

This doesn't clear the stored value.

Trait Implementations

impl Clone for StringListMetric[src]

impl Debug for StringListMetric[src]

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