Enum glean_core::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§
source§impl Clone for HistogramType
impl Clone for HistogramType
source§fn clone(&self) -> HistogramType
fn clone(&self) -> HistogramType
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 HistogramType
impl Debug for HistogramType
source§impl<'de> Deserialize<'de> for HistogramType
impl<'de> Deserialize<'de> for HistogramType
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 Serialize for HistogramType
impl Serialize for HistogramType
source§impl 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§
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
§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
Create a new handle for an Arc value Read more
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
Clone a handle Read more
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
Read moresource§impl<V> ObjectSerialize for Vwhere
V: Serialize + for<'de> Deserialize<'de>,
impl<V> ObjectSerialize for Vwhere
V: Serialize + for<'de> Deserialize<'de>,
source§fn from_str(obj: &str) -> Result<V, ObjectError>
fn from_str(obj: &str) -> Result<V, ObjectError>
Deserialize the object from its JSON representation. Read more
source§fn into_serialized_object(self) -> Result<Value, ObjectError>
fn into_serialized_object(self) -> Result<Value, ObjectError>
Serialize this object into a JSON string.