pub enum Value {
Node(Node),
Edge(Edge),
Property(PropertyValue),
Literal(Literal),
List(Vec<Value>),
Path(Vec<PathElem>),
Null,
}Variants§
Node(Node)
Edge(Edge)
Property(PropertyValue)
Literal(Literal)
List(Vec<Value>)
A collect() result — a query-layer-only concept, not persisted as
a PropertyValue (nothing in the grammar can construct a list
literal to store as a node/edge property).
Path(Vec<PathElem>)
A named path (MATCH p = (a)-->(b) RETURN p) or a shortestPath()
result — see Binding::Path’s docs (executor.rs) for how this
gets assembled during MATCH evaluation.
Null
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Value
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnsafeUnpin for Value
impl UnwindSafe for Value
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