pub struct UuidMetric { /* private fields */ }
Expand description
An UUID metric.
Stores UUID v4 (randomly generated) values.
Implementations§
Source§impl UuidMetric
impl UuidMetric
Sourcepub fn new(meta: CommonMetricData) -> Self
pub fn new(meta: CommonMetricData) -> Self
Creates a new UUID metric
Sourcepub fn generate_and_set(&self) -> String
pub fn generate_and_set(&self) -> String
Generates a new random Uuid
and sets the metric to it.
Returns the generated UUID formatted as a hex string.
Trait Implementations§
Source§impl Clone for UuidMetric
impl Clone for UuidMetric
Source§fn clone(&self) -> UuidMetric
fn clone(&self) -> UuidMetric
Returns a duplicate 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 UuidMetric
impl Debug for UuidMetric
Source§impl<UT> LiftRef<UT> for UuidMetric
impl<UT> LiftRef<UT> for UuidMetric
type LiftType = Arc<UuidMetric>
Source§impl<UT> LowerError<UT> for UuidMetric
impl<UT> LowerError<UT> for UuidMetric
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 UuidMetric
impl<UT> LowerReturn<UT> for UuidMetric
Source§type ReturnType = <Arc<UuidMetric> as LowerReturn<UniFfiTag>>::ReturnType
type ReturnType = <Arc<UuidMetric> 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 UuidMetric
impl MallocSizeOf for UuidMetric
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 UuidMetric
impl MetricType for UuidMetric
Source§fn with_name(&self, _name: String) -> Selfwhere
Self: Sized,
fn with_name(&self, _name: String) -> Selfwhere
Self: Sized,
Create a new metric from this with a new name.
Source§fn with_dynamic_label(&self, _label: DynamicLabelType) -> Selfwhere
Self: Sized,
fn with_dynamic_label(&self, _label: DynamicLabelType) -> Selfwhere
Self: Sized,
Create a new metric from this with a specific label.
Source§impl TestGetValue<String> for UuidMetric
impl TestGetValue<String> for UuidMetric
Source§fn test_get_value(&self, ping_name: Option<String>) -> Option<String>
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.
Source§impl<UT> TypeId<UT> for UuidMetric
impl<UT> TypeId<UT> for UuidMetric
Auto Trait Implementations§
impl Freeze for UuidMetric
impl RefUnwindSafe for UuidMetric
impl Send for UuidMetric
impl Sync for UuidMetric
impl Unpin for UuidMetric
impl UnwindSafe for UuidMetric
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