pub enum EvidenceMethod {
Native,
Instrumented,
Declared,
Correlated,
Measured,
Derived,
Heuristic,
}Expand description
Method used to produce a known observation.
Variants§
Native
Native framework/runtime observation.
Instrumented
Observation made by installed instrumentation.
Declared
Explicit application declaration.
Correlation across independently identified facts.
Measured
Direct measurement.
Derived
Deterministic derivation from stronger facts.
Heuristic
Best-effort heuristic; never behavioral authority.
Trait Implementations§
Source§impl Clone for EvidenceMethod
impl Clone for EvidenceMethod
Source§fn clone(&self) -> EvidenceMethod
fn clone(&self) -> EvidenceMethod
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 moreimpl Copy for EvidenceMethod
Source§impl Debug for EvidenceMethod
impl Debug for EvidenceMethod
Source§impl<'de> Deserialize<'de> for EvidenceMethod
impl<'de> Deserialize<'de> for EvidenceMethod
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
impl Eq for EvidenceMethod
Source§impl PartialEq for EvidenceMethod
impl PartialEq for EvidenceMethod
Source§impl Serialize for EvidenceMethod
impl Serialize for EvidenceMethod
impl StructuralPartialEq for EvidenceMethod
Auto Trait Implementations§
impl Freeze for EvidenceMethod
impl RefUnwindSafe for EvidenceMethod
impl Send for EvidenceMethod
impl Sync for EvidenceMethod
impl Unpin for EvidenceMethod
impl UnsafeUnpin for EvidenceMethod
impl UnwindSafe for EvidenceMethod
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