Struct glean_core::metrics::DenominatorMetric
source · pub struct DenominatorMetric { /* private fields */ }
Expand description
A Denominator metric (a kind of count shared among Rate metrics).
Used to count things. The value can only be incremented, not decremented.
Implementations§
source§impl DenominatorMetric
impl DenominatorMetric
sourcepub fn new(meta: CommonMetricData, numerators: Vec<CommonMetricData>) -> Self
pub fn new(meta: CommonMetricData, numerators: Vec<CommonMetricData>) -> Self
Creates a new denominator metric.
sourcepub fn test_get_value(&self, ping_name: Option<String>) -> Option<i32>
pub fn test_get_value(&self, ping_name: Option<String>) -> Option<i32>
Test-only API (exported for FFI purposes).
Gets the currently stored value as an integer.
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 DenominatorMetric
impl Clone for DenominatorMetric
source§fn clone(&self) -> DenominatorMetric
fn clone(&self) -> DenominatorMetric
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 DenominatorMetric
impl Debug for DenominatorMetric
source§impl MetricType for DenominatorMetric
impl MetricType for DenominatorMetric
Auto Trait Implementations§
impl RefUnwindSafe for DenominatorMetric
impl Send for DenominatorMetric
impl Sync for DenominatorMetric
impl Unpin for DenominatorMetric
impl UnwindSafe for DenominatorMetric
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