pub struct SetMapItem {
pub target: VarId,
pub map: ExprId,
pub replace: bool,
}Expand description
A bulk map assignment from SET n += map or SET n = map (#800).
Fields§
§target: VarIdThe bound node or relationship variable whose properties are written.
map: ExprIdThe map expression, evaluated per matched row.
replace: booltrue for replacement (=), false for merge (+=).
Trait Implementations§
Source§impl Clone for SetMapItem
impl Clone for SetMapItem
Source§fn clone(&self) -> SetMapItem
fn clone(&self) -> SetMapItem
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 SetMapItem
impl Debug for SetMapItem
Source§impl<'de> Deserialize<'de> for SetMapItem
impl<'de> Deserialize<'de> for SetMapItem
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SetMapItem
impl PartialEq for SetMapItem
Source§impl Serialize for SetMapItem
impl Serialize for SetMapItem
impl StructuralPartialEq for SetMapItem
Auto Trait Implementations§
impl Freeze for SetMapItem
impl RefUnwindSafe for SetMapItem
impl Send for SetMapItem
impl Sync for SetMapItem
impl Unpin for SetMapItem
impl UnsafeUnpin for SetMapItem
impl UnwindSafe for SetMapItem
Blanket Implementations§
impl<T> Allocation for T
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