Struct glean::private::LabeledMetric

source ·
pub struct LabeledMetric<T> { /* private fields */ }
Expand description

A labeled metric.

Labeled metrics allow to record multiple sub-metrics of the same type under different string labels.

Implementations§

source§

impl<T> LabeledMetric<T>
where T: AllowLabeled + Clone,

source

pub fn new( meta: LabeledMetricData, labels: Option<Vec<Cow<'static, str>>>, ) -> LabeledMetric<T>

Creates a new labeled metric from the given metric instance and optional list of labels.

See get for information on how static or dynamic labels are handled.

source

pub fn get<S>(&self, label: S) -> Arc<T>
where S: AsRef<str>,

Gets a specific metric for a given label.

If a set of acceptable labels were specified in the metrics.yaml file, and the given label is not in the set, it will be recorded under the special OTHER_LABEL label.

If a set of acceptable labels was not specified in the metrics.yaml file, only the first 16 unique labels will be used. After that, any additional labels will be recorded under the special OTHER_LABEL label.

Labels must have a maximum of 111 characters, and may comprise any printable ASCII characters. If an invalid label is used, the metric will be recorded in the special OTHER_LABEL label.

source

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 error
§Returns

The number of errors reported.

Trait Implementations§

source§

impl<T> Debug for LabeledMetric<T>
where T: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<UT> LiftRef<UT> for LabeledMetric<BooleanMetric>

source§

impl<UT> LiftRef<UT> for LabeledMetric<CounterMetric>

source§

impl<UT> LiftRef<UT> for LabeledMetric<QuantityMetric>

source§

impl<UT> LiftRef<UT> for LabeledMetric<StringMetric>

source§

impl<UT> LowerError<UT> for LabeledMetric<BooleanMetric>

source§

fn lower_error(obj: LabeledMetric<BooleanMetric>) -> RustBuffer

Lower this value for scaffolding function return Read more
source§

impl<UT> LowerError<UT> for LabeledMetric<CounterMetric>

source§

fn lower_error(obj: LabeledMetric<CounterMetric>) -> RustBuffer

Lower this value for scaffolding function return Read more
source§

impl<UT> LowerError<UT> for LabeledMetric<QuantityMetric>

source§

fn lower_error(obj: LabeledMetric<QuantityMetric>) -> RustBuffer

Lower this value for scaffolding function return Read more
source§

impl<UT> LowerError<UT> for LabeledMetric<StringMetric>

source§

fn lower_error(obj: LabeledMetric<StringMetric>) -> RustBuffer

Lower this value for scaffolding function return Read more
source§

impl<UT> LowerReturn<UT> for LabeledMetric<BooleanMetric>

source§

type ReturnType = <Arc<LabeledMetric<BooleanMetric>> as LowerReturn<UniFfiTag>>::ReturnType

The type that should be returned by scaffolding functions for this type. Read more
source§

fn lower_return( obj: LabeledMetric<BooleanMetric>, ) -> Result<<LabeledMetric<BooleanMetric> as LowerReturn<UT>>::ReturnType, RustCallError>

Lower the return value from an scaffolding call Read more
§

fn handle_failed_lift( error: LiftArgsError, ) -> Result<Self::ReturnType, RustCallError>

Lower the return value for failed argument lifts Read more
source§

impl<UT> LowerReturn<UT> for LabeledMetric<CounterMetric>

source§

type ReturnType = <Arc<LabeledMetric<CounterMetric>> as LowerReturn<UniFfiTag>>::ReturnType

The type that should be returned by scaffolding functions for this type. Read more
source§

fn lower_return( obj: LabeledMetric<CounterMetric>, ) -> Result<<LabeledMetric<CounterMetric> as LowerReturn<UT>>::ReturnType, RustCallError>

Lower the return value from an scaffolding call Read more
§

fn handle_failed_lift( error: LiftArgsError, ) -> Result<Self::ReturnType, RustCallError>

Lower the return value for failed argument lifts Read more
source§

impl<UT> LowerReturn<UT> for LabeledMetric<QuantityMetric>

source§

type ReturnType = <Arc<LabeledMetric<QuantityMetric>> as LowerReturn<UniFfiTag>>::ReturnType

The type that should be returned by scaffolding functions for this type. Read more
source§

fn lower_return( obj: LabeledMetric<QuantityMetric>, ) -> Result<<LabeledMetric<QuantityMetric> as LowerReturn<UT>>::ReturnType, RustCallError>

Lower the return value from an scaffolding call Read more
§

fn handle_failed_lift( error: LiftArgsError, ) -> Result<Self::ReturnType, RustCallError>

Lower the return value for failed argument lifts Read more
source§

impl<UT> LowerReturn<UT> for LabeledMetric<StringMetric>

source§

type ReturnType = <Arc<LabeledMetric<StringMetric>> as LowerReturn<UniFfiTag>>::ReturnType

The type that should be returned by scaffolding functions for this type. Read more
source§

fn lower_return( obj: LabeledMetric<StringMetric>, ) -> Result<<LabeledMetric<StringMetric> as LowerReturn<UT>>::ReturnType, RustCallError>

Lower the return value from an scaffolding call Read more
§

fn handle_failed_lift( error: LiftArgsError, ) -> Result<Self::ReturnType, RustCallError>

Lower the return value for failed argument lifts Read more
source§

impl<T> MallocSizeOf for LabeledMetric<T>
where T: MallocSizeOf,

source§

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<UT> TypeId<UT> for LabeledMetric<BooleanMetric>

source§

const TYPE_ID_META: MetadataBuffer = _

source§

impl<UT> TypeId<UT> for LabeledMetric<CounterMetric>

source§

const TYPE_ID_META: MetadataBuffer = _

source§

impl<UT> TypeId<UT> for LabeledMetric<QuantityMetric>

source§

const TYPE_ID_META: MetadataBuffer = _

source§

impl<UT> TypeId<UT> for LabeledMetric<StringMetric>

source§

const TYPE_ID_META: MetadataBuffer = _

Auto Trait Implementations§

§

impl<T> !Freeze for LabeledMetric<T>

§

impl<T> RefUnwindSafe for LabeledMetric<T>
where T: RefUnwindSafe,

§

impl<T> Send for LabeledMetric<T>
where T: Send + Sync,

§

impl<T> Sync for LabeledMetric<T>
where T: Sync + Send,

§

impl<T> Unpin for LabeledMetric<T>
where T: Unpin,

§

impl<T> UnwindSafe for LabeledMetric<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, UT> HandleAlloc<UT> for T
where T: Send + Sync,

§

fn new_handle(value: Arc<T>) -> Handle

Create a new handle for an Arc value Read more
§

unsafe fn clone_handle(handle: Handle) -> Handle

Clone a handle Read more
§

unsafe fn consume_handle(handle: Handle) -> Arc<T>

Consume a handle, getting back the initial Arc<> Read more
§

unsafe fn get_arc(handle: Handle) -> Arc<Self>

Get a clone of the Arc<> using a “borrowed” handle. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
OSZAR »