pub struct EvidenceSource {
pub site: String,
pub url: String,
pub origin: EvidenceOrigin,
pub observed_at_ms: Option<u64>,
pub access_path: Option<EvidenceAccessPath>,
}Expand description
Source metadata attached to every normalized evidence item.
Fields§
§site: StringSite name that produced the result.
url: StringConcrete profile URL that was probed.
origin: EvidenceOriginWhich Adler subsystem produced the fact.
observed_at_ms: Option<u64>Unix epoch milliseconds when Adler observed this fact. Missing on older persisted scans and on manually-built evidence.
access_path: Option<EvidenceAccessPath>Coarse, non-secret access context for the probe that produced this evidence. Deliberately excludes session names, proxy URLs, header values, and egress identifiers.
Trait Implementations§
Source§impl Clone for EvidenceSource
impl Clone for EvidenceSource
Source§fn clone(&self) -> EvidenceSource
fn clone(&self) -> EvidenceSource
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 EvidenceSource
impl Debug for EvidenceSource
Source§impl<'de> Deserialize<'de> for EvidenceSource
impl<'de> Deserialize<'de> for EvidenceSource
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 EvidenceSource
Source§impl PartialEq for EvidenceSource
impl PartialEq for EvidenceSource
Source§fn eq(&self, other: &EvidenceSource) -> bool
fn eq(&self, other: &EvidenceSource) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EvidenceSource
impl Serialize for EvidenceSource
impl StructuralPartialEq for EvidenceSource
Auto Trait Implementations§
impl Freeze for EvidenceSource
impl RefUnwindSafe for EvidenceSource
impl Send for EvidenceSource
impl Sync for EvidenceSource
impl Unpin for EvidenceSource
impl UnsafeUnpin for EvidenceSource
impl UnwindSafe for EvidenceSource
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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.