Enum glean::HistogramType
source · [−]pub enum HistogramType {
Linear,
Exponential,
}Expand description
Different kinds of histograms.
Variants
Linear
A histogram with linear distributed buckets.
Exponential
A histogram with exponential distributed buckets.
Trait Implementations
sourceimpl Clone for HistogramType
impl Clone for HistogramType
sourcefn clone(&self) -> HistogramType
fn clone(&self) -> HistogramType
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for HistogramType
impl Debug for HistogramType
sourceimpl<'de> Deserialize<'de> for HistogramType
impl<'de> Deserialize<'de> for HistogramType
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<HistogramType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<HistogramType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Serialize for HistogramType
impl Serialize for HistogramType
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
sourceimpl TryFrom<i32> for HistogramType
impl TryFrom<i32> for HistogramType
impl Copy for HistogramType
Auto Trait Implementations
impl RefUnwindSafe for HistogramType
impl Send for HistogramType
impl Sync for HistogramType
impl Unpin for HistogramType
impl UnwindSafe for HistogramType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more