pub struct PendingEdge {
pub src_id: String,
pub dst_id: String,
pub relationship: RelationshipType,
}Expand description
A pending edge to be created once both nodes exist.
Fields§
§src_id: String§dst_id: String§relationship: RelationshipTypeTrait Implementations§
Auto Trait Implementations§
impl Freeze for PendingEdge
impl RefUnwindSafe for PendingEdge
impl Send for PendingEdge
impl Sync for PendingEdge
impl Unpin for PendingEdge
impl UnsafeUnpin for PendingEdge
impl UnwindSafe for PendingEdge
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