pub struct VertexPattern {
pub variable: String,
pub constraints: Vec<VertexPredicate>,
}Expand description
(V_P) — a vertex variable in a pattern, with optional constraints.
Fields§
§variable: String§constraints: Vec<VertexPredicate>Implementations§
Trait Implementations§
Source§impl Clone for VertexPattern
impl Clone for VertexPattern
Source§fn clone(&self) -> VertexPattern
fn clone(&self) -> VertexPattern
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 moreAuto Trait Implementations§
impl !RefUnwindSafe for VertexPattern
impl !UnwindSafe for VertexPattern
impl Freeze for VertexPattern
impl Send for VertexPattern
impl Sync for VertexPattern
impl Unpin for VertexPattern
impl UnsafeUnpin for VertexPattern
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