Trait PlanNodeMeta

Source
pub trait PlanNodeMeta {
    type Convention: ConventionMarker;

    const NODE_TYPE: PlanNodeType;

    // Required methods
    fn plan_base(&self) -> &PlanBase<Self::Convention>;
    fn plan_base_ref(&self) -> PlanBaseRef<'_>;
}
Expand description

The trait for accessing the meta data and PlanBase for plan nodes.

Required Associated Constants§

Required Associated Types§

Required Methods§

Source

fn plan_base(&self) -> &PlanBase<Self::Convention>

Get the reference to the PlanBase with corresponding convention.

Source

fn plan_base_ref(&self) -> PlanBaseRef<'_>

Get the reference to the PlanBase with erased convention.

This is mainly used for implementing AnyPlanNodeMeta. Callers should prefer PlanNodeMeta::plan_base instead as it is more type-safe.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl PlanNodeMeta for BatchDelete

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchDelete

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchExchange

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchExchange

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchExpand

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchExpand

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchFileScan

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchFileScan

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchFilter

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchFilter

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchGroupTopN

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchGroupTopN

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchHashAgg

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchHashAgg

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchHashJoin

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchHashJoin

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchHopWindow

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchHopWindow

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchIcebergScan

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchIcebergScan

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchInsert

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchInsert

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchKafkaScan

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchKafkaScan

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchLimit

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchLimit

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchLogSeqScan

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchLogSeqScan

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchLookupJoin

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchLookupJoin

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchMaxOneRow

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchMaxOneRow

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchMySqlQuery

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchMySqlQuery

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchNestedLoopJoin

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchNestedLoopJoin

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchOverWindow

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchOverWindow

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchPostgresQuery

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchPostgresQuery

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchProject

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchProject

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchProjectSet

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchProjectSet

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchSeqScan

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchSeqScan

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchSimpleAgg

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchSimpleAgg

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchSort

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchSort

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchSortAgg

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchSortAgg

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchSource

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchSource

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchSysSeqScan

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchSysSeqScan

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchTableFunction

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchTableFunction

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchTopN

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchTopN

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchUnion

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchUnion

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchUpdate

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchUpdate

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for BatchValues

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::BatchValues

Source§

type Convention = Batch

Source§

impl PlanNodeMeta for LogicalAgg

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalAgg

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalApply

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalApply

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalCdcScan

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalCdcScan

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalChangeLog

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalChangeLog

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalCteRef

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalCteRef

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalDedup

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalDedup

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalDelete

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalDelete

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalExcept

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalExcept

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalExpand

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalExpand

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalFileScan

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalFileScan

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalFilter

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalFilter

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalHopWindow

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalHopWindow

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalIcebergScan

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalIcebergScan

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalInsert

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalInsert

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalIntersect

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalIntersect

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalJoin

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalJoin

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalKafkaScan

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalKafkaScan

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalLimit

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalLimit

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalMaxOneRow

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalMaxOneRow

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalMultiJoin

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalMultiJoin

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalMySqlQuery

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalMySqlQuery

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalNow

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalNow

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalOverWindow

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalOverWindow

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalPostgresQuery

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalPostgresQuery

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalProject

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalProject

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalProjectSet

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalProjectSet

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalRecursiveUnion

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalRecursiveUnion

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalScan

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalScan

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalShare

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalShare

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalSource

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalSource

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalSysScan

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalSysScan

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalTableFunction

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalTableFunction

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalTopN

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalTopN

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalUnion

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalUnion

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalUpdate

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalUpdate

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for LogicalValues

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::LogicalValues

Source§

type Convention = Logical

Source§

impl PlanNodeMeta for StreamAsOfJoin

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamAsOfJoin

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamCdcTableScan

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamCdcTableScan

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamChangeLog

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamChangeLog

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamDedup

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamDedup

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamDeltaJoin

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamDeltaJoin

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamDml

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamDml

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamDynamicFilter

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamDynamicFilter

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamEowcOverWindow

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamEowcOverWindow

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamEowcSort

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamEowcSort

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamExchange

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamExchange

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamExpand

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamExpand

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamFilter

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamFilter

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamFsFetch

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamFsFetch

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamGlobalApproxPercentile

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamGlobalApproxPercentile

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamGroupTopN

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamGroupTopN

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamHashAgg

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamHashAgg

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamHashJoin

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamHashJoin

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamHopWindow

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamHopWindow

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamLocalApproxPercentile

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamLocalApproxPercentile

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamMaterialize

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamMaterialize

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamNow

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamNow

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamOverWindow

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamOverWindow

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamProject

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamProject

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamProjectSet

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamProjectSet

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamRowIdGen

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamRowIdGen

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamRowMerge

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamRowMerge

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamShare

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamShare

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamSimpleAgg

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamSimpleAgg

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamSink

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamSink

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamSource

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamSource

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamSourceScan

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamSourceScan

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamStatelessSimpleAgg

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamStatelessSimpleAgg

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamSyncLogStore

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamSyncLogStore

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamTableScan

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamTableScan

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamTemporalJoin

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamTemporalJoin

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamTopN

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamTopN

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamUnion

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamUnion

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamValues

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamValues

Source§

type Convention = Stream

Source§

impl PlanNodeMeta for StreamWatermarkFilter

Source§

const NODE_TYPE: PlanNodeType = PlanNodeType::StreamWatermarkFilter

Source§

type Convention = Stream