Enum relay_metrics::BucketViewValue
source · pub enum BucketViewValue<'a> {
Counter(CounterType),
Distribution(&'a [DistributionType]),
Set(SetView<'a>),
Gauge(GaugeValue),
}
Expand description
A view into the datapoints of a BucketValue
.
Variants§
Counter(CounterType)
A counter metric.
See: BucketValue::Counter
.
Distribution(&'a [DistributionType])
A distribution metric.
Set(SetView<'a>)
A set metric.
See: BucketValue::Set
.
Gauge(GaugeValue)
A gauage metric.
See: BucketValue::Gauge
.
Trait Implementations§
source§impl<'a> Clone for BucketViewValue<'a>
impl<'a> Clone for BucketViewValue<'a>
source§fn clone(&self) -> BucketViewValue<'a>
fn clone(&self) -> BucketViewValue<'a>
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<'a> Debug for BucketViewValue<'a>
impl<'a> Debug for BucketViewValue<'a>
source§impl<'a> From<&'a BucketValue> for BucketViewValue<'a>
impl<'a> From<&'a BucketValue> for BucketViewValue<'a>
source§fn from(value: &'a BucketValue) -> Self
fn from(value: &'a BucketValue) -> Self
Converts to this type from the input type.
source§impl<'a> PartialEq for BucketViewValue<'a>
impl<'a> PartialEq for BucketViewValue<'a>
source§impl<'a> Serialize for BucketViewValue<'a>
impl<'a> Serialize for BucketViewValue<'a>
impl<'a> StructuralPartialEq for BucketViewValue<'a>
Auto Trait Implementations§
impl<'a> Freeze for BucketViewValue<'a>
impl<'a> RefUnwindSafe for BucketViewValue<'a>
impl<'a> Send for BucketViewValue<'a>
impl<'a> Sync for BucketViewValue<'a>
impl<'a> Unpin for BucketViewValue<'a>
impl<'a> UnwindSafe for BucketViewValue<'a>
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
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
)