pub struct AddLabelOp {
pub variable: String,
pub labels: Vec<String>,
pub input: Box<LogicalOperator>,
}Expand description
Add labels to a node.
Fields§
§variable: StringVariable of the node to update.
labels: Vec<String>Labels to add.
input: Box<LogicalOperator>Input operator.
Trait Implementations§
Source§impl Clone for AddLabelOp
impl Clone for AddLabelOp
Source§fn clone(&self) -> AddLabelOp
fn clone(&self) -> AddLabelOp
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 AddLabelOp
impl RefUnwindSafe for AddLabelOp
impl Send for AddLabelOp
impl Sync for AddLabelOp
impl Unpin for AddLabelOp
impl UnwindSafe for AddLabelOp
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