pub struct QuantityMetric { /* private fields */ }
Expand description
A quantity metric.
Used to store explicit non-negative integers.
Implementations§
Source§impl QuantityMetric
impl QuantityMetric
Sourcepub fn new(meta: CommonMetricData) -> Self
pub fn new(meta: CommonMetricData) -> Self
Creates a new quantity metric.
Sourcepub fn test_get_value(&self, ping_name: Option<String>) -> Option<i64>
pub fn test_get_value(&self, ping_name: Option<String>) -> Option<i64>
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 QuantityMetric
impl Clone for QuantityMetric
Source§fn clone(&self) -> QuantityMetric
fn clone(&self) -> QuantityMetric
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for QuantityMetric
impl Debug for QuantityMetric
Source§impl<UT> LiftRef<UT> for QuantityMetric
impl<UT> LiftRef<UT> for QuantityMetric
type LiftType = Arc<QuantityMetric>
Source§impl<UT> LowerError<UT> for QuantityMetric
impl<UT> LowerError<UT> for QuantityMetric
Source§fn lower_error(obj: Self) -> RustBuffer
fn lower_error(obj: Self) -> RustBuffer
Lower this value for scaffolding function return Read more
Source§impl<UT> LowerReturn<UT> for QuantityMetric
impl<UT> LowerReturn<UT> for QuantityMetric
Source§type ReturnType = <Arc<QuantityMetric> as LowerReturn<UniFfiTag>>::ReturnType
type ReturnType = <Arc<QuantityMetric> as LowerReturn<UniFfiTag>>::ReturnType
The type that should be returned by scaffolding functions for this type. Read more
Source§fn lower_return(obj: Self) -> Result<Self::ReturnType, RustCallError>
fn lower_return(obj: Self) -> Result<Self::ReturnType, RustCallError>
Lower the return value from an scaffolding call Read more
Source§fn handle_failed_lift(
error: LiftArgsError,
) -> Result<Self::ReturnType, RustCallError>
fn handle_failed_lift( error: LiftArgsError, ) -> Result<Self::ReturnType, RustCallError>
Lower the return value for failed argument lifts Read more
Source§impl MallocSizeOf for QuantityMetric
impl MallocSizeOf for QuantityMetric
Source§fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
Measure the heap usage of all descendant heap-allocated structures, but
not the space taken up by the value itself.
Source§impl MetricType for QuantityMetric
impl MetricType for QuantityMetric
Source§fn with_dynamic_label(&self, label: DynamicLabelType) -> Self
fn with_dynamic_label(&self, label: DynamicLabelType) -> Self
Create a new metric from this with a specific label.
Source§impl<UT> TypeId<UT> for QuantityMetric
impl<UT> TypeId<UT> for QuantityMetric
Auto Trait Implementations§
impl Freeze for QuantityMetric
impl RefUnwindSafe for QuantityMetric
impl Send for QuantityMetric
impl Sync for QuantityMetric
impl Unpin for QuantityMetric
impl UnwindSafe for QuantityMetric
Blanket Implementations§
Source§impl<T> AllowLabeled for Twhere
T: MetricType + Sealed,
impl<T> AllowLabeled for Twhere
T: MetricType + Sealed,
Source§fn new_labeled(meta: LabeledMetricData) -> T
fn new_labeled(meta: LabeledMetricData) -> T
Create a new labeled metric.
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