pub struct HistogramValue {
pub sum: Option<MetricNumber>,
pub count: Option<u64>,
pub created: Option<Timestamp>,
pub buckets: Vec<HistogramBucket>,
}
Fields§
§sum: Option<MetricNumber>
§count: Option<u64>
§created: Option<Timestamp>
§buckets: Vec<HistogramBucket>
Trait Implementations§
Source§impl Clone for HistogramValue
impl Clone for HistogramValue
Source§fn clone(&self) -> HistogramValue
fn clone(&self) -> HistogramValue
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 HistogramValue
impl Debug for HistogramValue
Source§impl Default for HistogramValue
impl Default for HistogramValue
Source§fn default() -> HistogramValue
fn default() -> HistogramValue
Returns the “default value” for a type. Read more
Source§impl PartialEq for HistogramValue
impl PartialEq for HistogramValue
impl StructuralPartialEq for HistogramValue
Auto Trait Implementations§
impl Freeze for HistogramValue
impl RefUnwindSafe for HistogramValue
impl Send for HistogramValue
impl Sync for HistogramValue
impl Unpin for HistogramValue
impl UnwindSafe for HistogramValue
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