Struct glean_core::metrics::ObjectMetric
source · pub struct ObjectMetric { /* private fields */ }Expand description
An object metric.
Record structured data. The value must adhere to a predefined structure and is serialized into JSON.
Implementations§
source§impl ObjectMetric
impl ObjectMetric
sourcepub fn new(meta: CommonMetricData) -> Self
pub fn new(meta: CommonMetricData) -> Self
Creates a new object metric.
sourcepub fn set(&self, value: JsonValue)
pub fn set(&self, value: JsonValue)
Sets to the specified structure.
No additional verification is done. The shape needs to be externally verified.
§Arguments
value- the value to set.
sourcepub fn record_schema_error(&self)
pub fn record_schema_error(&self)
Record an InvalidValue error for this metric.
Only to be used by the RLB.
sourcepub fn test_get_value(&self, ping_name: Option<String>) -> Option<JsonValue>
pub fn test_get_value(&self, ping_name: Option<String>) -> Option<JsonValue>
Test-only API (exported for FFI purposes).
Gets the currently stored value as JSON.
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
Exported for test purposes.
Gets the number of recorded errors for the given metric and error type.
§Arguments
error- The type of errorping_name- represents the optional name of the ping to retrieve the metric for. inner to the first value insend_in_pings.
§Returns
The number of errors reported.
Trait Implementations§
source§impl Clone for ObjectMetric
impl Clone for ObjectMetric
source§fn clone(&self) -> ObjectMetric
fn clone(&self) -> ObjectMetric
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 ObjectMetric
impl Debug for ObjectMetric
source§impl MetricType for ObjectMetric
impl MetricType for ObjectMetric
Auto Trait Implementations§
impl Freeze for ObjectMetric
impl RefUnwindSafe for ObjectMetric
impl Send for ObjectMetric
impl Sync for ObjectMetric
impl Unpin for ObjectMetric
impl UnwindSafe for ObjectMetric
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, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>