pub struct Relationship {
pub id: String,
pub from_entity: String,
pub to_entity: String,
pub relation_type: RelationType,
pub properties: HashMap<String, Value>,
pub weight: f64,
pub created_at: DateTime<Utc>,
pub source: String,
}Expand description
A directed edge between two entities.
Fields§
§id: StringUnique identifier for this relationship.
from_entity: StringSource entity ID.
to_entity: StringTarget entity ID.
relation_type: RelationTypeKind of relationship.
properties: HashMap<String, Value>Arbitrary properties on the edge.
weight: f64Importance / confidence weight (0.0 – 1.0).
created_at: DateTime<Utc>When this relationship was created.
source: StringOrigin of this relationship.
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 · 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