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 set_string(&self, object: String)
pub fn set_string(&self, object: String)
Sets to the specified structure.
Parses the passed JSON string. If it can’t be parsed into a valid object it records an invalid value error.
Note: This does not check the structure. This needs to be done by the wrapper.
§Arguments
object
- JSON representation of the object 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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ObjectMetric
impl Debug for ObjectMetric
source§impl<UT> LiftRef<UT> for ObjectMetric
impl<UT> LiftRef<UT> for ObjectMetric
type LiftType = Arc<ObjectMetric>
source§impl<UT> LowerError<UT> for ObjectMetric
impl<UT> LowerError<UT> for ObjectMetric
source§fn lower_error(obj: Self) -> RustBuffer
fn lower_error(obj: Self) -> RustBuffer
source§impl<UT> LowerReturn<UT> for ObjectMetric
impl<UT> LowerReturn<UT> for ObjectMetric
source§type ReturnType = <Arc<ObjectMetric> as LowerReturn<UniFfiTag>>::ReturnType
type ReturnType = <Arc<ObjectMetric> as LowerReturn<UniFfiTag>>::ReturnType
source§fn lower_return(obj: Self) -> Result<Self::ReturnType, RustCallError>
fn lower_return(obj: Self) -> Result<Self::ReturnType, RustCallError>
§fn handle_failed_lift(
error: LiftArgsError,
) -> Result<Self::ReturnType, RustCallError>
fn handle_failed_lift( error: LiftArgsError, ) -> Result<Self::ReturnType, RustCallError>
source§impl MallocSizeOf for ObjectMetric
impl MallocSizeOf for ObjectMetric
source§impl MetricType for ObjectMetric
impl MetricType for ObjectMetric
source§fn with_name(&self, _name: String) -> Selfwhere
Self: Sized,
fn with_name(&self, _name: String) -> Selfwhere
Self: Sized,
source§fn with_dynamic_label(&self, _label: DynamicLabelType) -> Selfwhere
Self: Sized,
fn with_dynamic_label(&self, _label: DynamicLabelType) -> Selfwhere
Self: Sized,
source§impl<UT> TypeId<UT> for ObjectMetric
impl<UT> TypeId<UT> for ObjectMetric
const TYPE_ID_META: MetadataBuffer = _
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§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
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Arc<>
Read more