pub struct Edge {
pub entity_id: i64,
pub relationship_type: String,
pub src_node_id: i64,
pub dst_node_id: i64,
pub properties: HashMap<String, FalkorValue>,
}Expand description
An edge in the graph, representing a relationship between two Nodes.
Fields§
§entity_id: i64The internal entity ID
relationship_type: StringWhat type is this relationship
src_node_id: i64The entity ID of the origin node
dst_node_id: i64The entity ID of the destination node
properties: HashMap<String, FalkorValue>A HashMap of the properties in key-val form
Trait Implementations§
impl StructuralPartialEq for Edge
Auto Trait Implementations§
impl Freeze for Edge
impl RefUnwindSafe for Edge
impl Send for Edge
impl Sync for Edge
impl Unpin for Edge
impl UnwindSafe for Edge
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