pub struct RelationMatch {
pub direction: Direction,
pub annotation: Annotation,
pub variable_length: Option<VariableLengthMatch>,
pub labels: Vec<Arc<str>>,
pub property_predicates: Vec<Expression>,
}Fields§
§direction: Direction§annotation: Annotation§variable_length: Option<VariableLengthMatch>§labels: Vec<Arc<str>>§property_predicates: Vec<Expression>Implementations§
Source§impl RelationMatch
impl RelationMatch
pub fn either( annotation: Annotation, labels: Vec<Arc<str>>, property_predicates: Vec<Expression>, variable_length: Option<VariableLengthMatch>, ) -> Self
pub fn left( annotation: Annotation, labels: Vec<Arc<str>>, property_predicates: Vec<Expression>, variable_length: Option<VariableLengthMatch>, ) -> Self
pub fn right( annotation: Annotation, labels: Vec<Arc<str>>, property_predicates: Vec<Expression>, variable_length: Option<VariableLengthMatch>, ) -> Self
Trait Implementations§
Source§impl Clone for RelationMatch
impl Clone for RelationMatch
Source§fn clone(&self) -> RelationMatch
fn clone(&self) -> RelationMatch
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 RelationMatch
impl Debug for RelationMatch
Source§impl PartialEq for RelationMatch
impl PartialEq for RelationMatch
impl StructuralPartialEq for RelationMatch
Auto Trait Implementations§
impl Freeze for RelationMatch
impl RefUnwindSafe for RelationMatch
impl Send for RelationMatch
impl Sync for RelationMatch
impl Unpin for RelationMatch
impl UnwindSafe for RelationMatch
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