pub struct NodeScanOp {
pub variable: String,
pub label: Option<String>,
pub input: Option<Box<LogicalOperator>>,
}Expand description
Scan nodes from the graph.
Fields§
§variable: StringVariable name to bind the node to.
label: Option<String>Optional label filter.
input: Option<Box<LogicalOperator>>Child operator (if any, for chained patterns).
Trait Implementations§
Source§impl Clone for NodeScanOp
impl Clone for NodeScanOp
Source§fn clone(&self) -> NodeScanOp
fn clone(&self) -> NodeScanOp
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 NodeScanOp
impl RefUnwindSafe for NodeScanOp
impl Send for NodeScanOp
impl Sync for NodeScanOp
impl Unpin for NodeScanOp
impl UnwindSafe for NodeScanOp
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