pub struct SetPropertyOp {
pub variable: String,
pub properties: Vec<(String, LogicalExpression)>,
pub replace: bool,
pub input: Box<LogicalOperator>,
}Expand description
Set properties on a node or edge.
Fields§
§variable: StringVariable of the entity to update.
properties: Vec<(String, LogicalExpression)>Properties to set (name -> expression).
replace: boolWhether to replace all properties (vs. merge).
input: Box<LogicalOperator>Input operator.
Trait Implementations§
Source§impl Clone for SetPropertyOp
impl Clone for SetPropertyOp
Source§fn clone(&self) -> SetPropertyOp
fn clone(&self) -> SetPropertyOp
Returns a duplicate of the value. Read more
1.0.0 · 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 Freeze for SetPropertyOp
impl RefUnwindSafe for SetPropertyOp
impl Send for SetPropertyOp
impl Sync for SetPropertyOp
impl Unpin for SetPropertyOp
impl UnwindSafe for SetPropertyOp
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