pub struct EvidenceAtom {
pub id: String,
pub source_id: String,
pub finding_id: String,
pub locator: Option<String>,
pub evidence_type: String,
pub measurement_or_claim: String,
pub supports_or_challenges: String,
pub condition_refs: Vec<String>,
pub extraction_method: String,
pub human_verified: bool,
pub caveats: Vec<String>,
}Fields§
§id: String§source_id: String§finding_id: String§locator: Option<String>§evidence_type: String§measurement_or_claim: String§supports_or_challenges: String§condition_refs: Vec<String>§extraction_method: String§human_verified: bool§caveats: Vec<String>Trait Implementations§
Source§impl Clone for EvidenceAtom
impl Clone for EvidenceAtom
Source§fn clone(&self) -> EvidenceAtom
fn clone(&self) -> EvidenceAtom
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 EvidenceAtom
impl Debug for EvidenceAtom
Source§impl<'de> Deserialize<'de> for EvidenceAtom
impl<'de> Deserialize<'de> for EvidenceAtom
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 PartialEq for EvidenceAtom
impl PartialEq for EvidenceAtom
Source§fn eq(&self, other: &EvidenceAtom) -> bool
fn eq(&self, other: &EvidenceAtom) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EvidenceAtom
impl Serialize for EvidenceAtom
impl Eq for EvidenceAtom
impl StructuralPartialEq for EvidenceAtom
Auto Trait Implementations§
impl Freeze for EvidenceAtom
impl RefUnwindSafe for EvidenceAtom
impl Send for EvidenceAtom
impl Sync for EvidenceAtom
impl Unpin for EvidenceAtom
impl UnsafeUnpin for EvidenceAtom
impl UnwindSafe for EvidenceAtom
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.