Struct glean::private::BooleanMetric
source · pub struct BooleanMetric { /* private fields */ }
Expand description
A boolean metric.
Records a simple flag.
Implementations§
source§impl BooleanMetric
impl BooleanMetric
sourcepub fn new(meta: CommonMetricData) -> BooleanMetric
pub fn new(meta: CommonMetricData) -> BooleanMetric
Creates a new boolean metric.
sourcepub fn set(&self, value: bool)
pub fn set(&self, value: bool)
Sets to the specified boolean value.
Arguments
glean
- the Glean instance this metric belongs to.value
- the value to set.
sourcepub fn test_get_value(&self, ping_name: Option<String>) -> Option<bool>
pub fn test_get_value(&self, ping_name: Option<String>) -> Option<bool>
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 BooleanMetric
impl Clone for BooleanMetric
source§fn clone(&self) -> BooleanMetric
fn clone(&self) -> BooleanMetric
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 BooleanMetric
impl Debug for BooleanMetric
source§impl MetricType for BooleanMetric
impl MetricType for BooleanMetric
source§fn with_name(&self, name: String) -> BooleanMetric
fn with_name(&self, name: String) -> BooleanMetric
Create a new metric from this with a new name.
source§fn with_dynamic_label(&self, label: String) -> BooleanMetric
fn with_dynamic_label(&self, label: String) -> BooleanMetric
Create a new metric from this with a specific label.
Auto Trait Implementations§
impl RefUnwindSafe for BooleanMetric
impl Send for BooleanMetric
impl Sync for BooleanMetric
impl Unpin for BooleanMetric
impl UnwindSafe for BooleanMetric
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.