Struct glean_core::metrics::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
sourceimpl StringMetric
impl StringMetric
Trait Implementations
sourceimpl Clone for StringMetric
impl Clone for StringMetric
sourcefn clone(&self) -> StringMetric
fn clone(&self) -> StringMetric
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for StringMetric
impl Debug for StringMetric
sourceimpl MetricType for StringMetric
impl MetricType for StringMetric
sourcefn meta(&self) -> &CommonMetricData
fn meta(&self) -> &CommonMetricData
Access the stored metadata
sourcefn meta_mut(&mut self) -> &mut CommonMetricData
fn meta_mut(&mut self) -> &mut CommonMetricData
Access the stored metadata mutable
sourcefn should_record(&self, glean: &Glean) -> bool
fn should_record(&self, glean: &Glean) -> bool
Whether this metric should currently be recorded Read more
Auto Trait Implementations
impl RefUnwindSafe for StringMetric
impl Send for StringMetric
impl Sync for StringMetric
impl Unpin for StringMetric
impl UnwindSafe for StringMetric
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more