Struct glean_core::metrics::StringListMetric
source · pub struct StringListMetric { /* private fields */ }
Expand description
A string list metric.
This allows appending a string value with arbitrary content to a list.
Implementations§
source§impl StringListMetric
impl StringListMetric
sourcepub fn new(meta: CommonMetricData) -> Self
pub fn new(meta: CommonMetricData) -> Self
Creates a new string list metric.
sourcepub fn set(&self, values: Vec<String>)
pub fn set(&self, values: Vec<String>)
Sets to a specific list of strings.
Arguments
value
- The list of string to set the metric to.
Notes
If passed an empty list, records an error and returns.
Truncates the list if it is longer than MAX_LIST_LENGTH
and logs an error.
Truncates any value in the list if it is longer than MAX_STRING_LENGTH
and logs an error.
Trait Implementations§
source§impl Clone for StringListMetric
impl Clone for StringListMetric
source§fn clone(&self) -> StringListMetric
fn clone(&self) -> StringListMetric
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 StringListMetric
impl Debug for StringListMetric
source§impl<UT> LiftRef<UT> for StringListMetric
impl<UT> LiftRef<UT> for StringListMetric
type LiftType = Arc<StringListMetric>
source§impl<UT> LowerError<UT> for StringListMetric
impl<UT> LowerError<UT> for StringListMetric
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 StringListMetric
impl<UT> LowerReturn<UT> for StringListMetric
§type ReturnType = <Arc<StringListMetric> as LowerReturn<UniFfiTag>>::ReturnType
type ReturnType = <Arc<StringListMetric> 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 StringListMetric
impl MetricType for StringListMetric
source§impl<UT> TypeId<UT> for StringListMetric
impl<UT> TypeId<UT> for StringListMetric
const TYPE_ID_META: MetadataBuffer = _
Auto Trait Implementations§
impl RefUnwindSafe for StringListMetric
impl Send for StringListMetric
impl Sync for StringListMetric
impl Unpin for StringListMetric
impl UnwindSafe for StringListMetric
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