pub struct TripleMatch {
pub start_id: i64,
pub end_id: i64,
pub edge_id: i64,
}Expand description
Result of a triple pattern match.
Represents a matched triple containing the start node, edge, and end node IDs.
Fields§
§start_id: i64ID of the start node
end_id: i64ID of the end node
edge_id: i64ID of the matching edge
Implementations§
Trait Implementations§
Source§impl Clone for TripleMatch
impl Clone for TripleMatch
Source§fn clone(&self) -> TripleMatch
fn clone(&self) -> TripleMatch
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 TripleMatch
impl Debug for TripleMatch
Source§impl PartialEq for TripleMatch
impl PartialEq for TripleMatch
impl Eq for TripleMatch
impl StructuralPartialEq for TripleMatch
Auto Trait Implementations§
impl Freeze for TripleMatch
impl RefUnwindSafe for TripleMatch
impl Send for TripleMatch
impl Sync for TripleMatch
impl Unpin for TripleMatch
impl UnwindSafe for TripleMatch
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