Struct glean_core::metrics::StringListMetric
source · pub struct StringListMetric { /* private fields */ }
Expand description
A string list metric.
This allows appending a string value with arbitrary content to a list.
Implementations§
source§impl StringListMetric
impl StringListMetric
sourcepub fn new(meta: CommonMetricData) -> Self
pub fn new(meta: CommonMetricData) -> Self
Creates a new string list metric.
sourcepub fn set(&self, values: Vec<String>)
pub fn set(&self, values: Vec<String>)
Sets to a specific list of strings.
Arguments
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.
Trait Implementations§
source§impl Clone for StringListMetric
impl Clone for StringListMetric
source§fn clone(&self) -> StringListMetric
fn clone(&self) -> StringListMetric
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for StringListMetric
impl Debug for StringListMetric
source§impl MetricType for StringListMetric
impl MetricType for StringListMetric
Auto Trait Implementations§
impl RefUnwindSafe for StringListMetric
impl Send for StringListMetric
impl Sync for StringListMetric
impl Unpin for StringListMetric
impl UnwindSafe for StringListMetric
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
Create a new handle for an Arc value Read more
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
Clone a handle Read more
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
Read more