Struct glean_core::metrics::NumeratorMetric
source · pub struct NumeratorMetric(/* private fields */);
Expand description
Developer-facing API for recording rate metrics with external denominators.
Instances of this class type are automatically generated by the parsers at build time, allowing developers to record values that were previously registered in the metrics.yaml file.
Implementations§
source§impl NumeratorMetric
impl NumeratorMetric
sourcepub fn new(meta: CommonMetricData) -> Self
pub fn new(meta: CommonMetricData) -> Self
The public constructor used by automatically generated metrics.
sourcepub fn add_to_numerator(&self, amount: i32)
pub fn add_to_numerator(&self, amount: i32)
Trait Implementations§
source§impl Clone for NumeratorMetric
impl Clone for NumeratorMetric
source§fn clone(&self) -> NumeratorMetric
fn clone(&self) -> NumeratorMetric
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<UT> LiftRef<UT> for NumeratorMetric
impl<UT> LiftRef<UT> for NumeratorMetric
type LiftType = Arc<NumeratorMetric>
source§impl<UT> LowerError<UT> for NumeratorMetric
impl<UT> LowerError<UT> for NumeratorMetric
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 NumeratorMetric
impl<UT> LowerReturn<UT> for NumeratorMetric
§type ReturnType = <Arc<NumeratorMetric> as LowerReturn<UniFfiTag>>::ReturnType
type ReturnType = <Arc<NumeratorMetric> 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
§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 MetricType for NumeratorMetric
impl MetricType for NumeratorMetric
source§impl<UT> TypeId<UT> for NumeratorMetric
impl<UT> TypeId<UT> for NumeratorMetric
const TYPE_ID_META: MetadataBuffer = _
Auto Trait Implementations§
impl RefUnwindSafe for NumeratorMetric
impl Send for NumeratorMetric
impl Sync for NumeratorMetric
impl Unpin for NumeratorMetric
impl UnwindSafe for NumeratorMetric
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
§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
Create a new handle for an Arc value Read more
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
Clone a handle Read more
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
Read more