pub enum SampleMapType {
Log2Hist,
LinearHist,
DefaultKV,
}
Expand description
Sample types
Variants§
Log2Hist
print the event data as log2_hist plain text
LinearHist
print the event data as linear hist plain text
DefaultKV
print the event data as key-value format in plain text or json
Trait Implementations§
Source§impl Clone for SampleMapType
impl Clone for SampleMapType
Source§fn clone(&self) -> SampleMapType
fn clone(&self) -> SampleMapType
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 SampleMapType
impl Debug for SampleMapType
Source§impl Default for SampleMapType
impl Default for SampleMapType
Source§fn default() -> SampleMapType
fn default() -> SampleMapType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SampleMapType
impl<'de> Deserialize<'de> for SampleMapType
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 SampleMapType
impl PartialEq for SampleMapType
Source§impl Serialize for SampleMapType
impl Serialize for SampleMapType
impl Eq for SampleMapType
impl StructuralPartialEq for SampleMapType
Auto Trait Implementations§
impl Freeze for SampleMapType
impl RefUnwindSafe for SampleMapType
impl Send for SampleMapType
impl Sync for SampleMapType
impl Unpin for SampleMapType
impl UnwindSafe for SampleMapType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.