pub enum Binding {
Vertex(Vertex),
Edge(Edge),
Value(Value),
EdgeList(Vec<Edge>),
}Expand description
One row in the binding table threaded through the clause pipeline. Variables can resolve to vertex / edge / arbitrary value bindings.
Variants§
Vertex(Vertex)
Edge(Edge)
Value(Value)
EdgeList(Vec<Edge>)
Variable-length relationship binding: ordered list of edges.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Binding
impl RefUnwindSafe for Binding
impl Send for Binding
impl Sync for Binding
impl Unpin for Binding
impl UnsafeUnpin for Binding
impl UnwindSafe for Binding
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