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>

source

pub fn new(meta: CommonMetricData) -> Self

The public constructor used by automatically generated metrics.

source

pub fn with_runtime_extra_keys( meta: CommonMetricData, allowed_extra_keys: Vec<String>, ) -> Self

The public constructor used by runtime-defined metrics.

source

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>

Trait Implementations§

source§

impl<K: Clone> Clone for EventMetric<K>

source§

fn clone(&self) -> EventMetric<K>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<K: ExtraKeys> Event for EventMetric<K>

source§

type Extra = K

The type of the allowed extra keys for this event.
source§

fn record<M: Into<Option<<Self as Event>::Extra>>>(&self, extra: M)

Records an event. Read more
source§

fn test_get_value<'a, S: Into<Option<&'a str>>>( &self, ping_name: S, ) -> Option<Vec<RecordedEvent>>

Exported for test purposes. Read more
source§

fn test_get_num_recorded_errors(&self, error: ErrorType) -> i32

Exported for test purposes. Read more
source§

impl<K> MallocSizeOf for EventMetric<K>

source§

fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize

Measure the heap usage of all descendant heap-allocated structures, but not the space taken up by the value itself.
source§

impl<'a, K> MetricIdentifier<'a> for EventMetric<K>

source§

fn get_identifiers(&'a self) -> (&'a str, &'a str, Option<&'a str>)

Retrieve the category, name and (maybe) label of the metric

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> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, UT> HandleAlloc<UT> for T
where T: Send + Sync,

§

fn new_handle(value: Arc<T>) -> Handle

Create a new handle for an Arc value Read more
§

unsafe fn clone_handle(handle: Handle) -> Handle

Clone a handle Read more
§

unsafe fn consume_handle(handle: Handle) -> Arc<T>

Consume a handle, getting back the initial Arc<> Read more
§

unsafe fn get_arc(handle: Handle) -> Arc<Self>

Get a clone of the Arc<> using a “borrowed” handle. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.