pub struct HistogramDataPoint {
pub attributes: Vec<KeyValue>,
pub start_time_unix_nano: u64,
pub time_unix_nano: u64,
pub count: u64,
pub sum: f64,
pub bucket_counts: Vec<u64>,
pub explicit_bounds: Vec<f64>,
pub exemplars: Vec<Exemplar>,
pub flags: u32,
pub min: f64,
pub max: f64,
pub _has: _Hazzer,
}
Fields§
§attributes: Vec<KeyValue>
§start_time_unix_nano: u64
§time_unix_nano: u64
§count: u64
§sum: f64
§bucket_counts: Vec<u64>
§explicit_bounds: Vec<f64>
§exemplars: Vec<Exemplar>
§flags: u32
§min: f64
§max: f64
§_has: _Hazzer
Implementations§
Trait Implementations§
Source§impl Clone for HistogramDataPoint
impl Clone for HistogramDataPoint
Source§fn clone(&self) -> HistogramDataPoint
fn clone(&self) -> HistogramDataPoint
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 HistogramDataPoint
impl Debug for HistogramDataPoint
Source§impl Default for HistogramDataPoint
impl Default for HistogramDataPoint
Source§impl MessageDecode for HistogramDataPoint
impl MessageDecode for HistogramDataPoint
Source§fn decode<IMPL_MICROPB_READ: PbRead>(
&mut self,
decoder: &mut PbDecoder<IMPL_MICROPB_READ>,
len: usize,
) -> Result<(), DecodeError<IMPL_MICROPB_READ::Error>>
fn decode<IMPL_MICROPB_READ: PbRead>( &mut self, decoder: &mut PbDecoder<IMPL_MICROPB_READ>, len: usize, ) -> Result<(), DecodeError<IMPL_MICROPB_READ::Error>>
Decode an instance of the message from the decoder and merge it into
self
. Read moreSource§fn decode_len_delimited<R>(
&mut self,
decoder: &mut PbDecoder<R>,
) -> Result<(), DecodeError<<R as PbRead>::Error>>where
R: PbRead,
fn decode_len_delimited<R>(
&mut self,
decoder: &mut PbDecoder<R>,
) -> Result<(), DecodeError<<R as PbRead>::Error>>where
R: PbRead,
Decode an instance of the message from the decoder as a length-delimited record, starting with a length
prefix.
Source§impl MessageEncode for HistogramDataPoint
impl MessageEncode for HistogramDataPoint
Source§impl PartialEq for HistogramDataPoint
impl PartialEq for HistogramDataPoint
impl StructuralPartialEq for HistogramDataPoint
Auto Trait Implementations§
impl Freeze for HistogramDataPoint
impl RefUnwindSafe for HistogramDataPoint
impl Send for HistogramDataPoint
impl Sync for HistogramDataPoint
impl Unpin for HistogramDataPoint
impl UnwindSafe for HistogramDataPoint
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