pub struct NodeByLabelScanExec {
pub input: Option<PhysicalNodeId>,
pub var: VarId,
pub labels: Vec<Vec<String>>,
}Fields§
§input: Option<PhysicalNodeId>§var: VarId§labels: Vec<Vec<String>>Each inner Vec is a disjunctive group (OR). Outer Vec is conjunctive (AND).
Trait Implementations§
Source§impl Clone for NodeByLabelScanExec
impl Clone for NodeByLabelScanExec
Source§fn clone(&self) -> NodeByLabelScanExec
fn clone(&self) -> NodeByLabelScanExec
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 NodeByLabelScanExec
impl RefUnwindSafe for NodeByLabelScanExec
impl Send for NodeByLabelScanExec
impl Sync for NodeByLabelScanExec
impl Unpin for NodeByLabelScanExec
impl UnsafeUnpin for NodeByLabelScanExec
impl UnwindSafe for NodeByLabelScanExec
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