Struct glean::private::CounterMetric
source · pub struct CounterMetric { /* private fields */ }
Expand description
A counter metric.
Used to count things. The value can only be incremented, not decremented.
Implementations§
source§impl CounterMetric
impl CounterMetric
sourcepub fn new(meta: CommonMetricData) -> CounterMetric
pub fn new(meta: CommonMetricData) -> CounterMetric
Creates a new counter 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.
sourcepub fn test_get_num_recorded_errors(&self, error: ErrorType) -> i32
pub fn test_get_num_recorded_errors(&self, error: ErrorType) -> i32
Trait Implementations§
source§impl Clone for CounterMetric
impl Clone for CounterMetric
source§fn clone(&self) -> CounterMetric
fn clone(&self) -> CounterMetric
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 CounterMetric
impl Debug for CounterMetric
source§impl MetricType for CounterMetric
impl MetricType for CounterMetric
source§fn with_name(&self, name: String) -> CounterMetric
fn with_name(&self, name: String) -> CounterMetric
Create a new metric from this with a new name.
source§fn with_dynamic_label(&self, label: String) -> CounterMetric
fn with_dynamic_label(&self, label: String) -> CounterMetric
Create a new metric from this with a specific label.
Auto Trait Implementations§
impl RefUnwindSafe for CounterMetric
impl Send for CounterMetric
impl Sync for CounterMetric
impl Unpin for CounterMetric
impl UnwindSafe for CounterMetric
Blanket Implementations§
source§impl<T> AllowLabeled for Twhere
T: MetricType + Sealed,
impl<T> AllowLabeled for Twhere
T: MetricType + Sealed,
source§fn new_labeled(meta: CommonMetricData) -> T
fn new_labeled(meta: CommonMetricData) -> T
Create a new labeled metric.