pub struct PatternChain {
pub elements: Vec<PatternElement>,
}Expand description
A single chain of alternating nodes and relationships.
Fields§
§elements: Vec<PatternElement>Alternating node and relationship elements.
Trait Implementations§
Source§impl Clone for PatternChain
impl Clone for PatternChain
Source§fn clone(&self) -> PatternChain
fn clone(&self) -> PatternChain
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 PatternChain
impl Debug for PatternChain
Source§impl PartialEq for PatternChain
impl PartialEq for PatternChain
impl StructuralPartialEq for PatternChain
Auto Trait Implementations§
impl Freeze for PatternChain
impl RefUnwindSafe for PatternChain
impl Send for PatternChain
impl Sync for PatternChain
impl Unpin for PatternChain
impl UnsafeUnpin for PatternChain
impl UnwindSafe for PatternChain
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