pub enum Relationship {
ParticipatedIn {
role: Role,
sentiment: Sentiment,
},
OccurredAt,
CausedBy,
HasStateChange {
change: StateChange,
},
AffiliatedWith,
OriginatedFrom,
AccountOf,
AuthoredBy,
Mentions,
LocatedIn,
}Expand description
An edge in the chronicle graph.
Variants§
ParticipatedIn
Actor → Event
Fields
OccurredAt
Event → Place
CausedBy
Event → Event (effect → cause)
HasStateChange
Event → affected Entity
Fields
§
change: StateChangeThe state change that was applied.
AffiliatedWith
Actor → Actor (member → faction)
OriginatedFrom
Concept → Event
AccountOf
Account → Event
AuthoredBy
Account → Actor (source)
Mentions
Account → any Entity (from {entity_id} refs in text)
LocatedIn
Place → Place (child → parent region)
Trait Implementations§
Source§impl Clone for Relationship
impl Clone for Relationship
Source§fn clone(&self) -> Relationship
fn clone(&self) -> Relationship
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 Relationship
impl Debug for Relationship
Source§impl<'de> Deserialize<'de> for Relationship
impl<'de> Deserialize<'de> for Relationship
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
Auto Trait Implementations§
impl Freeze for Relationship
impl RefUnwindSafe for Relationship
impl Send for Relationship
impl Sync for Relationship
impl Unpin for Relationship
impl UnsafeUnpin for Relationship
impl UnwindSafe for Relationship
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