pub enum FingerprintExclusionGroup {
RunIds,
EventIds,
Timestamps,
AdapterHealth,
TemporaryPaths,
TelemetrySinkHealth,
}Expand description
Enumerates the finite fingerprint exclusion group cases. Serialized names are part of the SDK contract; update fixtures when variants change.
Variants§
RunIds
Use this variant when the contract needs to represent run ids; selecting it has no side effect by itself.
EventIds
Use this variant when the contract needs to represent event ids; selecting it has no side effect by itself.
Timestamps
Use this variant when the contract needs to represent timestamps; selecting it has no side effect by itself.
AdapterHealth
Use this variant when the contract needs to represent adapter health; selecting it has no side effect by itself.
TemporaryPaths
Use this variant when the contract needs to represent temporary paths; selecting it has no side effect by itself.
TelemetrySinkHealth
Use this variant when the contract needs to represent telemetry sink health; selecting it has no side effect by itself.
Trait Implementations§
Source§impl Clone for FingerprintExclusionGroup
impl Clone for FingerprintExclusionGroup
Source§fn clone(&self) -> FingerprintExclusionGroup
fn clone(&self) -> FingerprintExclusionGroup
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for FingerprintExclusionGroup
impl Debug for FingerprintExclusionGroup
Source§impl<'de> Deserialize<'de> for FingerprintExclusionGroup
impl<'de> Deserialize<'de> for FingerprintExclusionGroup
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>,
Source§impl PartialEq for FingerprintExclusionGroup
impl PartialEq for FingerprintExclusionGroup
Source§fn eq(&self, other: &FingerprintExclusionGroup) -> bool
fn eq(&self, other: &FingerprintExclusionGroup) -> bool
self and other values to be equal, and is used by ==.