pub enum ClickStackSource {
ClickStackLogSource(ClickStackLogSource),
ClickStackTraceSource(ClickStackTraceSource),
ClickStackMetricSource(ClickStackMetricSource),
ClickStackSessionSource(ClickStackSessionSource),
Unknown(String),
}Expand description
ClickStackSource - one of multiple variants.
Variants§
ClickStackLogSource(ClickStackLogSource)
ClickStackTraceSource(ClickStackTraceSource)
ClickStackMetricSource(ClickStackMetricSource)
ClickStackSessionSource(ClickStackSessionSource)
Unknown(String)
Catch-all for unknown or newly-added values.
Trait Implementations§
Source§impl Clone for ClickStackSource
impl Clone for ClickStackSource
Source§fn clone(&self) -> ClickStackSource
fn clone(&self) -> ClickStackSource
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ClickStackSource
impl Debug for ClickStackSource
Source§impl Default for ClickStackSource
impl Default for ClickStackSource
Source§impl<'de> Deserialize<'de> for ClickStackSource
impl<'de> Deserialize<'de> for ClickStackSource
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 Display for ClickStackSource
impl Display for ClickStackSource
Source§impl PartialEq for ClickStackSource
impl PartialEq for ClickStackSource
Source§fn eq(&self, other: &ClickStackSource) -> bool
fn eq(&self, other: &ClickStackSource) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ClickStackSource
impl Serialize for ClickStackSource
impl StructuralPartialEq for ClickStackSource
Auto Trait Implementations§
impl Freeze for ClickStackSource
impl RefUnwindSafe for ClickStackSource
impl Send for ClickStackSource
impl Sync for ClickStackSource
impl Unpin for ClickStackSource
impl UnsafeUnpin for ClickStackSource
impl UnwindSafe for ClickStackSource
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