pub enum ProfileEvidenceKind {
Username,
DisplayName,
Bio,
AvatarUrl,
AvatarHash,
ExternalLink,
Location,
JoinedDate,
ProfileTitle,
MetaDescription,
ExtractedField,
}Expand description
Profile evidence categories that higher-level analysis can reason over.
Variants§
Username
Exact username value confirmed by a site-authored detection signal.
DisplayName
A displayed human name.
Bio
Profile biography or description text.
AvatarUrl
Avatar or profile image URL.
AvatarHash
Privacy-safe perceptual hash derived from an avatar image.
ExternalLink
External website or social link.
Location
Location-like profile field.
JoinedDate
Account creation or joined date.
ProfileTitle
HTML/profile title.
MetaDescription
Meta/OpenGraph/Twitter description.
ExtractedField
Field that does not yet map to a richer category.
Implementations§
Source§impl ProfileEvidenceKind
impl ProfileEvidenceKind
Sourcepub fn from_field(field: &str) -> Self
pub fn from_field(field: &str) -> Self
Map a registry enrichment field name to a normalized evidence kind.
Trait Implementations§
Source§impl Clone for ProfileEvidenceKind
impl Clone for ProfileEvidenceKind
Source§fn clone(&self) -> ProfileEvidenceKind
fn clone(&self) -> ProfileEvidenceKind
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 ProfileEvidenceKind
Source§impl Debug for ProfileEvidenceKind
impl Debug for ProfileEvidenceKind
Source§impl<'de> Deserialize<'de> for ProfileEvidenceKind
impl<'de> Deserialize<'de> for ProfileEvidenceKind
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 ProfileEvidenceKind
Source§impl PartialEq for ProfileEvidenceKind
impl PartialEq for ProfileEvidenceKind
Source§fn eq(&self, other: &ProfileEvidenceKind) -> bool
fn eq(&self, other: &ProfileEvidenceKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProfileEvidenceKind
impl Serialize for ProfileEvidenceKind
impl StructuralPartialEq for ProfileEvidenceKind
Auto Trait Implementations§
impl Freeze for ProfileEvidenceKind
impl RefUnwindSafe for ProfileEvidenceKind
impl Send for ProfileEvidenceKind
impl Sync for ProfileEvidenceKind
impl Unpin for ProfileEvidenceKind
impl UnsafeUnpin for ProfileEvidenceKind
impl UnwindSafe for ProfileEvidenceKind
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.