Struct glean::private::EventMetric
source · pub struct EventMetric<K> { /* private fields */ }
Expand description
Developer-facing API for recording event metrics.
Instances of this class type are automatically generated by the parsers at build time, allowing developers to record values that were previously registered in the metrics.yaml file.
Implementations§
source§impl<K: ExtraKeys> EventMetric<K>
impl<K: ExtraKeys> EventMetric<K>
sourcepub fn new(meta: CommonMetricData) -> Self
pub fn new(meta: CommonMetricData) -> Self
The public constructor used by automatically generated metrics.
sourcepub fn with_runtime_extra_keys(
meta: CommonMetricData,
allowed_extra_keys: Vec<String>,
) -> Self
pub fn with_runtime_extra_keys( meta: CommonMetricData, allowed_extra_keys: Vec<String>, ) -> Self
The public constructor used by runtime-defined metrics.
sourcepub fn record_with_time(&self, timestamp: u64, extra: HashMap<String, String>)
pub fn record_with_time(&self, timestamp: u64, extra: HashMap<String, String>)
Record a new event with a provided timestamp.
It’s the caller’s responsibility to ensure the timestamp comes from the same clock source.
Use glean::get_timestamp_ms
to get a valid timestamp.
source§impl<K: ExtraKeys> EventMetric<K>
impl<K: ExtraKeys> EventMetric<K>
Trait Implementations§
source§impl<K: Clone> Clone for EventMetric<K>
impl<K: Clone> Clone for EventMetric<K>
source§fn clone(&self) -> EventMetric<K>
fn clone(&self) -> EventMetric<K>
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<K: ExtraKeys> Event for EventMetric<K>
impl<K: ExtraKeys> Event for EventMetric<K>
source§impl<K> MallocSizeOf for EventMetric<K>
impl<K> MallocSizeOf for EventMetric<K>
source§impl<'a, K> MetricIdentifier<'a> for EventMetric<K>
impl<'a, K> MetricIdentifier<'a> for EventMetric<K>
Auto Trait Implementations§
impl<K> !Freeze for EventMetric<K>
impl<K> RefUnwindSafe for EventMetric<K>where
K: RefUnwindSafe,
impl<K> Send for EventMetric<K>where
K: Send,
impl<K> Sync for EventMetric<K>where
K: Sync,
impl<K> Unpin for EventMetric<K>where
K: Unpin,
impl<K> UnwindSafe for EventMetric<K>where
K: UnwindSafe,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§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