pub struct ExponentialHistogram {
pub data_points: Vec<ExponentialHistogramDataPoint>,
pub aggregation_temporality: AggregationTemporality,
}
Fields§
§data_points: Vec<ExponentialHistogramDataPoint>
§aggregation_temporality: AggregationTemporality
Trait Implementations§
Source§impl Clone for ExponentialHistogram
impl Clone for ExponentialHistogram
Source§fn clone(&self) -> ExponentialHistogram
fn clone(&self) -> ExponentialHistogram
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 ExponentialHistogram
impl Debug for ExponentialHistogram
Source§impl Default for ExponentialHistogram
impl Default for ExponentialHistogram
Source§impl MessageDecode for ExponentialHistogram
impl MessageDecode for ExponentialHistogram
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 ExponentialHistogram
impl MessageEncode for ExponentialHistogram
Source§impl PartialEq for ExponentialHistogram
impl PartialEq for ExponentialHistogram
impl StructuralPartialEq for ExponentialHistogram
Auto Trait Implementations§
impl Freeze for ExponentialHistogram
impl RefUnwindSafe for ExponentialHistogram
impl Send for ExponentialHistogram
impl Sync for ExponentialHistogram
impl Unpin for ExponentialHistogram
impl UnwindSafe for ExponentialHistogram
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