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