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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more