Struct glean_core::metrics::UuidMetric
source · pub struct UuidMetric { /* private fields */ }
Expand description
An UUID metric.
Stores UUID v4 (randomly generated) values.
Implementations§
source§impl UuidMetric
impl UuidMetric
sourcepub fn new(meta: CommonMetricData) -> Self
pub fn new(meta: CommonMetricData) -> Self
Creates a new UUID metric
sourcepub fn generate_and_set(&self) -> String
pub fn generate_and_set(&self) -> String
Generates a new random [Uuid
’] and sets the metric to it.
sourcepub fn test_get_value(&self, ping_name: Option<String>) -> Option<String>
pub fn test_get_value(&self, ping_name: Option<String>) -> Option<String>
Test-only API (exported for FFI purposes).
Gets the currently stored value as a string.
This doesn’t clear the stored value.
Arguments
ping_name
- the optional name of the ping to retrieve the metric for. Defaults to the first value insend_in_pings
.
Returns
The stored value or None
if nothing stored.
Trait Implementations§
source§impl Clone for UuidMetric
impl Clone for UuidMetric
source§fn clone(&self) -> UuidMetric
fn clone(&self) -> UuidMetric
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 UuidMetric
impl Debug for UuidMetric
source§impl MetricType for UuidMetric
impl MetricType for UuidMetric
Auto Trait Implementations§
impl RefUnwindSafe for UuidMetric
impl Send for UuidMetric
impl Sync for UuidMetric
impl Unpin for UuidMetric
impl UnwindSafe for UuidMetric
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