[][src]Struct pgx_pg_sys::EState

#[repr(C)]pub struct EState {
    pub type_: NodeTag,
    pub es_direction: ScanDirection,
    pub es_snapshot: Snapshot,
    pub es_crosscheck_snapshot: Snapshot,
    pub es_range_table: *mut List,
    pub es_range_table_size: Index,
    pub es_relations: *mut Relation,
    pub es_rowmarks: *mut *mut ExecRowMark,
    pub es_plannedstmt: *mut PlannedStmt,
    pub es_sourceText: *const c_char,
    pub es_junkFilter: *mut JunkFilter,
    pub es_output_cid: CommandId,
    pub es_result_relations: *mut ResultRelInfo,
    pub es_num_result_relations: c_int,
    pub es_result_relation_info: *mut ResultRelInfo,
    pub es_root_result_relations: *mut ResultRelInfo,
    pub es_num_root_result_relations: c_int,
    pub es_partition_directory: PartitionDirectory,
    pub es_tuple_routing_result_relations: *mut List,
    pub es_trig_target_relations: *mut List,
    pub es_param_list_info: ParamListInfo,
    pub es_param_exec_vals: *mut ParamExecData,
    pub es_queryEnv: *mut QueryEnvironment,
    pub es_query_cxt: MemoryContext,
    pub es_tupleTable: *mut List,
    pub es_processed: uint64,
    pub es_top_eflags: c_int,
    pub es_instrument: c_int,
    pub es_finished: bool,
    pub es_exprcontexts: *mut List,
    pub es_subplanstates: *mut List,
    pub es_auxmodifytables: *mut List,
    pub es_per_tuple_exprcontext: *mut ExprContext,
    pub es_epq_active: *mut EPQState,
    pub es_use_parallel_mode: bool,
    pub es_query_dsa: *mut dsa_area,
    pub es_jit_flags: c_int,
    pub es_jit: *mut JitContext,
    pub es_jit_worker_instr: *mut JitInstrumentation,
}

Fields

type_: NodeTages_direction: ScanDirectiones_snapshot: Snapshotes_crosscheck_snapshot: Snapshotes_range_table: *mut Listes_range_table_size: Indexes_relations: *mut Relationes_rowmarks: *mut *mut ExecRowMarkes_plannedstmt: *mut PlannedStmtes_sourceText: *const c_chares_junkFilter: *mut JunkFilteres_output_cid: CommandIdes_result_relations: *mut ResultRelInfoes_num_result_relations: c_intes_result_relation_info: *mut ResultRelInfoes_root_result_relations: *mut ResultRelInfoes_num_root_result_relations: c_intes_partition_directory: PartitionDirectoryes_tuple_routing_result_relations: *mut Listes_trig_target_relations: *mut Listes_param_list_info: ParamListInfoes_param_exec_vals: *mut ParamExecDataes_queryEnv: *mut QueryEnvironmentes_query_cxt: MemoryContextes_tupleTable: *mut Listes_processed: uint64es_top_eflags: c_intes_instrument: c_intes_finished: booles_exprcontexts: *mut Listes_subplanstates: *mut Listes_auxmodifytables: *mut Listes_per_tuple_exprcontext: *mut ExprContextes_epq_active: *mut EPQStatees_use_parallel_mode: booles_query_dsa: *mut dsa_areaes_jit_flags: c_intes_jit: *mut JitContextes_jit_worker_instr: *mut JitInstrumentation

Trait Implementations

impl Clone for EState[src]

impl Copy for EState[src]

impl Debug for EState[src]

impl Default for EState[src]

impl Display for EState[src]

impl PgNode for EState[src]

type NodeType = EState

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.