Struct glean::private::StringMetric
source · pub struct StringMetric { /* private fields */ }
Expand description
A string metric.
Record an Unicode string value with arbitrary content.
Strings are length-limited to MAX_LENGTH_VALUE
bytes.
Implementations§
source§impl StringMetric
impl StringMetric
sourcepub fn new(meta: CommonMetricData) -> StringMetric
pub fn new(meta: CommonMetricData) -> StringMetric
Creates a new string metric.
sourcepub fn test_get_value(&self, ping_name: Option<String>) -> Option<String>
pub fn test_get_value(&self, ping_name: Option<String>) -> Option<String>
Test-only API (exported for FFI purposes).
Gets the currently stored value as a string.
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 StringMetric
impl Clone for StringMetric
source§fn clone(&self) -> StringMetric
fn clone(&self) -> StringMetric
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 StringMetric
impl Debug for StringMetric
source§impl<UT> LiftRef<UT> for StringMetric
impl<UT> LiftRef<UT> for StringMetric
type LiftType = Arc<StringMetric>
source§impl<UT> LowerError<UT> for StringMetric
impl<UT> LowerError<UT> for StringMetric
source§fn lower_error(obj: StringMetric) -> RustBuffer
fn lower_error(obj: StringMetric) -> RustBuffer
Lower this value for scaffolding function return Read more
source§impl<UT> LowerReturn<UT> for StringMetric
impl<UT> LowerReturn<UT> for StringMetric
source§type ReturnType = <Arc<StringMetric> as LowerReturn<UniFfiTag>>::ReturnType
type ReturnType = <Arc<StringMetric> as LowerReturn<UniFfiTag>>::ReturnType
The type that should be returned by scaffolding functions for this type. Read more
source§fn lower_return(
obj: StringMetric,
) -> Result<<StringMetric as LowerReturn<UT>>::ReturnType, RustCallError>
fn lower_return( obj: StringMetric, ) -> Result<<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>
fn handle_failed_lift( error: LiftArgsError, ) -> Result<Self::ReturnType, RustCallError>
Lower the return value for failed argument lifts Read more
source§impl MallocSizeOf for StringMetric
impl MallocSizeOf for StringMetric
source§impl MetricType for StringMetric
impl MetricType for StringMetric
source§fn with_name(&self, name: String) -> StringMetric
fn with_name(&self, name: String) -> StringMetric
Create a new metric from this with a new name.
source§fn with_dynamic_label(&self, label: DynamicLabelType) -> StringMetric
fn with_dynamic_label(&self, label: DynamicLabelType) -> StringMetric
Create a new metric from this with a specific label.
source§impl<UT> TypeId<UT> for StringMetric
impl<UT> TypeId<UT> for StringMetric
const TYPE_ID_META: MetadataBuffer = _
Auto Trait Implementations§
impl Freeze for StringMetric
impl RefUnwindSafe for StringMetric
impl Send for StringMetric
impl Sync for StringMetric
impl Unpin for StringMetric
impl UnwindSafe for StringMetric
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
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)
🔬This is a nightly-only experimental API. (
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
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