pub struct ClaimRecord {
pub id: String,
pub source_scope: SourceScope,
pub subject_entity_label: String,
pub predicate: String,
pub object: String,
pub evidence_ids: Vec<String>,
pub confidence: ConfidenceScore,
pub status: FactStatus,
pub version_range: GraphVersionRange,
}Expand description
Claim fact extracted from or supported by evidence.
Fields§
§id: String§source_scope: SourceScope§subject_entity_label: String§predicate: String§object: String§evidence_ids: Vec<String>§confidence: ConfidenceScore§status: FactStatus§version_range: GraphVersionRangeImplementations§
Source§impl ClaimRecord
impl ClaimRecord
Sourcepub fn new(
id: impl Into<String>,
source_scope: SourceScope,
subject_entity_label: impl Into<String>,
predicate: impl Into<String>,
object: impl Into<String>,
evidence_ids: Vec<String>,
) -> Result<Self, DomainError>
pub fn new( id: impl Into<String>, source_scope: SourceScope, subject_entity_label: impl Into<String>, predicate: impl Into<String>, object: impl Into<String>, evidence_ids: Vec<String>, ) -> Result<Self, DomainError>
Validates a claim and its supporting evidence references.
Sourcepub fn with_metadata(
self,
confidence: ConfidenceScore,
status: FactStatus,
version_range: GraphVersionRange,
) -> Result<Self, DomainError>
pub fn with_metadata( self, confidence: ConfidenceScore, status: FactStatus, version_range: GraphVersionRange, ) -> Result<Self, DomainError>
Applies quality and lifecycle metadata after structural validation.
Trait Implementations§
Source§impl Clone for ClaimRecord
impl Clone for ClaimRecord
Source§fn clone(&self) -> ClaimRecord
fn clone(&self) -> ClaimRecord
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 ClaimRecord
impl Debug for ClaimRecord
Source§impl<'de> Deserialize<'de> for ClaimRecord
impl<'de> Deserialize<'de> for ClaimRecord
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 ClaimRecord
Source§impl PartialEq for ClaimRecord
impl PartialEq for ClaimRecord
Source§fn eq(&self, other: &ClaimRecord) -> bool
fn eq(&self, other: &ClaimRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ClaimRecord
impl Serialize for ClaimRecord
impl StructuralPartialEq for ClaimRecord
Auto Trait Implementations§
impl Freeze for ClaimRecord
impl RefUnwindSafe for ClaimRecord
impl Send for ClaimRecord
impl Sync for ClaimRecord
impl Unpin for ClaimRecord
impl UnsafeUnpin for ClaimRecord
impl UnwindSafe for ClaimRecord
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,
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§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.