pub enum UnwindExpr {
Lit(Vec<Value>),
Prop {
var: String,
field: String,
},
Var(String),
}Expand description
The expression whose value is iterated in UNWIND.
Variants§
Lit(Vec<Value>)
Inline list literal: [1, 2, 3].
Prop
Property on a bound node: n.tags.
Var(String)
A previously bound alias (from a prior WITH): alias.
Trait Implementations§
Source§impl Clone for UnwindExpr
impl Clone for UnwindExpr
Source§fn clone(&self) -> UnwindExpr
fn clone(&self) -> UnwindExpr
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 moreSource§impl Debug for UnwindExpr
impl Debug for UnwindExpr
Source§impl PartialEq for UnwindExpr
impl PartialEq for UnwindExpr
impl StructuralPartialEq for UnwindExpr
Auto Trait Implementations§
impl Freeze for UnwindExpr
impl RefUnwindSafe for UnwindExpr
impl Send for UnwindExpr
impl Sync for UnwindExpr
impl Unpin for UnwindExpr
impl UnsafeUnpin for UnwindExpr
impl UnwindSafe for UnwindExpr
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