pub struct EventRecord {
pub id: String,
pub source_scope: SourceScope,
pub event_type: String,
pub entity_labels: Vec<String>,
pub occurred_at: Option<String>,
pub evidence_ids: Vec<String>,
pub confidence: ConfidenceScore,
pub status: FactStatus,
pub version_range: GraphVersionRange,
}Expand description
Event fact tied to entities and optional valid-time text.
Fields§
§id: String§source_scope: SourceScope§event_type: String§entity_labels: Vec<String>§occurred_at: Option<String>§evidence_ids: Vec<String>§confidence: ConfidenceScore§status: FactStatus§version_range: GraphVersionRangeImplementations§
Source§impl EventRecord
impl EventRecord
Sourcepub fn new(
id: impl Into<String>,
source_scope: SourceScope,
event_type: impl Into<String>,
entity_labels: Vec<String>,
occurred_at: Option<String>,
evidence_ids: Vec<String>,
) -> Result<Self, DomainError>
pub fn new( id: impl Into<String>, source_scope: SourceScope, event_type: impl Into<String>, entity_labels: Vec<String>, occurred_at: Option<String>, evidence_ids: Vec<String>, ) -> Result<Self, DomainError>
Validates an event fact, linked entities, and supporting evidence.
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 EventRecord
impl Clone for EventRecord
Source§fn clone(&self) -> EventRecord
fn clone(&self) -> EventRecord
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 EventRecord
impl Debug for EventRecord
Source§impl<'de> Deserialize<'de> for EventRecord
impl<'de> Deserialize<'de> for EventRecord
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 EventRecord
Source§impl PartialEq for EventRecord
impl PartialEq for EventRecord
Source§fn eq(&self, other: &EventRecord) -> bool
fn eq(&self, other: &EventRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EventRecord
impl Serialize for EventRecord
impl StructuralPartialEq for EventRecord
Auto Trait Implementations§
impl Freeze for EventRecord
impl RefUnwindSafe for EventRecord
impl Send for EventRecord
impl Sync for EventRecord
impl Unpin for EventRecord
impl UnsafeUnpin for EventRecord
impl UnwindSafe for EventRecord
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.