pub enum PhysicalOp {
Show 17 variants
Argument(ArgumentExec),
NodeScan(NodeScanExec),
NodeByLabelScan(NodeByLabelScanExec),
Expand(ExpandExec),
Filter(FilterExec),
Projection(ProjectionExec),
Unwind(UnwindExec),
HashAggregation(HashAggregationExec),
Sort(SortExec),
Limit(LimitExec),
Create(CreateExec),
Merge(MergeExec),
Delete(DeleteExec),
Set(SetExec),
Remove(RemoveExec),
OptionalMatch(OptionalMatchExec),
PathBuild(PathBuildExec),
}Variants§
Argument(ArgumentExec)
NodeScan(NodeScanExec)
NodeByLabelScan(NodeByLabelScanExec)
Expand(ExpandExec)
Filter(FilterExec)
Projection(ProjectionExec)
Unwind(UnwindExec)
HashAggregation(HashAggregationExec)
Sort(SortExec)
Limit(LimitExec)
Create(CreateExec)
Merge(MergeExec)
Delete(DeleteExec)
Set(SetExec)
Remove(RemoveExec)
OptionalMatch(OptionalMatchExec)
PathBuild(PathBuildExec)
Trait Implementations§
Source§impl Clone for PhysicalOp
impl Clone for PhysicalOp
Source§fn clone(&self) -> PhysicalOp
fn clone(&self) -> PhysicalOp
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 PhysicalOp
impl RefUnwindSafe for PhysicalOp
impl Send for PhysicalOp
impl Sync for PhysicalOp
impl Unpin for PhysicalOp
impl UnsafeUnpin for PhysicalOp
impl UnwindSafe for PhysicalOp
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