pub trait TwoPTwoPAddEdge<Id>: TwoPTwoPId<Id> { // Required methods fn source(&self) -> &Id; fn target(&self) -> &Id; }
Trait for an edge-add operation, specifying source and target vertices.
Returns the source vertex ID.
Returns the target vertex ID.