pub struct GraphRelationRecord {
pub id: String,
pub source_scope: SourceScope,
pub source_entity_label: String,
pub relation_type: String,
pub target_entity_label: String,
pub evidence_ids: Vec<String>,
pub confidence: ConfidenceScore,
pub status: FactStatus,
pub version_range: GraphVersionRange,
}Expand description
Typed relation between graph entities.
Fields§
§id: String§source_scope: SourceScope§source_entity_label: String§relation_type: String§target_entity_label: String§evidence_ids: Vec<String>§confidence: ConfidenceScore§status: FactStatus§version_range: GraphVersionRangeImplementations§
Source§impl GraphRelationRecord
impl GraphRelationRecord
Sourcepub fn new(
id: impl Into<String>,
source_scope: SourceScope,
source_entity_label: impl Into<String>,
relation_type: impl Into<String>,
target_entity_label: impl Into<String>,
evidence_ids: Vec<String>,
) -> Result<Self, DomainError>
pub fn new( id: impl Into<String>, source_scope: SourceScope, source_entity_label: impl Into<String>, relation_type: impl Into<String>, target_entity_label: impl Into<String>, evidence_ids: Vec<String>, ) -> Result<Self, DomainError>
Validates a typed relation 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 GraphRelationRecord
impl Clone for GraphRelationRecord
Source§fn clone(&self) -> GraphRelationRecord
fn clone(&self) -> GraphRelationRecord
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 GraphRelationRecord
impl Debug for GraphRelationRecord
Source§impl<'de> Deserialize<'de> for GraphRelationRecord
impl<'de> Deserialize<'de> for GraphRelationRecord
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 GraphRelationRecord
Source§impl PartialEq for GraphRelationRecord
impl PartialEq for GraphRelationRecord
Source§impl Serialize for GraphRelationRecord
impl Serialize for GraphRelationRecord
impl StructuralPartialEq for GraphRelationRecord
Auto Trait Implementations§
impl Freeze for GraphRelationRecord
impl RefUnwindSafe for GraphRelationRecord
impl Send for GraphRelationRecord
impl Sync for GraphRelationRecord
impl Unpin for GraphRelationRecord
impl UnsafeUnpin for GraphRelationRecord
impl UnwindSafe for GraphRelationRecord
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§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.