pub enum HistogramBuckets {
HistogramBucketsOneOf(Box<HistogramBucketsOneOf>),
HistogramBucketsOneOf1(Box<HistogramBucketsOneOf1>),
}Variants§
HistogramBucketsOneOf(Box<HistogramBucketsOneOf>)
HistogramBucketsOneOf1(Box<HistogramBucketsOneOf1>)
Trait Implementations§
Source§impl Clone for HistogramBuckets
impl Clone for HistogramBuckets
Source§fn clone(&self) -> HistogramBuckets
fn clone(&self) -> HistogramBuckets
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 HistogramBuckets
impl Debug for HistogramBuckets
Source§impl Default for HistogramBuckets
impl Default for HistogramBuckets
Source§impl<'de> Deserialize<'de> for HistogramBuckets
impl<'de> Deserialize<'de> for HistogramBuckets
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for HistogramBuckets
impl PartialEq for HistogramBuckets
Source§impl Serialize for HistogramBuckets
impl Serialize for HistogramBuckets
impl StructuralPartialEq for HistogramBuckets
Auto Trait Implementations§
impl Freeze for HistogramBuckets
impl RefUnwindSafe for HistogramBuckets
impl Send for HistogramBuckets
impl Sync for HistogramBuckets
impl Unpin for HistogramBuckets
impl UnsafeUnpin for HistogramBuckets
impl UnwindSafe for HistogramBuckets
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