pub struct GraphRelationshipMatch {
pub from: GraphNodeMatch,
pub label: Label,
pub to: GraphNodeMatch,
pub id: Option<EdgeId>,
pub props: Props,
pub predicates: Vec<GraphPropertyPredicate>,
}Fields§
§from: GraphNodeMatch§label: Label§to: GraphNodeMatch§id: Option<EdgeId>§props: Props§predicates: Vec<GraphPropertyPredicate>Trait Implementations§
Source§impl Clone for GraphRelationshipMatch
impl Clone for GraphRelationshipMatch
Source§fn clone(&self) -> GraphRelationshipMatch
fn clone(&self) -> GraphRelationshipMatch
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GraphRelationshipMatch
impl Debug for GraphRelationshipMatch
Source§impl<'de> Deserialize<'de> for GraphRelationshipMatch
impl<'de> Deserialize<'de> for GraphRelationshipMatch
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GraphRelationshipMatch
impl PartialEq for GraphRelationshipMatch
Source§fn eq(&self, other: &GraphRelationshipMatch) -> bool
fn eq(&self, other: &GraphRelationshipMatch) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GraphRelationshipMatch
impl Serialize for GraphRelationshipMatch
impl StructuralPartialEq for GraphRelationshipMatch
Auto Trait Implementations§
impl Freeze for GraphRelationshipMatch
impl RefUnwindSafe for GraphRelationshipMatch
impl Send for GraphRelationshipMatch
impl Sync for GraphRelationshipMatch
impl Unpin for GraphRelationshipMatch
impl UnsafeUnpin for GraphRelationshipMatch
impl UnwindSafe for GraphRelationshipMatch
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