[][src]Struct pgx_pg_sys::pg11_specific::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_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_tuple_routing_result_relations: *mut List,
    pub es_trig_target_relations: *mut List,
    pub es_trig_tuple_slot: *mut TupleTableSlot,
    pub es_trig_oldtup_slot: *mut TupleTableSlot,
    pub es_trig_newtup_slot: *mut TupleTableSlot,
    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_rowMarks: *mut List,
    pub es_processed: uint64,
    pub es_lastoid: Oid,
    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_epqTuple: *mut HeapTuple,
    pub es_epqTupleSet: *mut bool,
    pub es_epqScanDone: *mut bool,
    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_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_tuple_routing_result_relations: *mut Listes_trig_target_relations: *mut Listes_trig_tuple_slot: *mut TupleTableSlotes_trig_oldtup_slot: *mut TupleTableSlotes_trig_newtup_slot: *mut TupleTableSlotes_param_list_info: ParamListInfoes_param_exec_vals: *mut ParamExecDataes_queryEnv: *mut QueryEnvironmentes_query_cxt: MemoryContextes_tupleTable: *mut Listes_rowMarks: *mut Listes_processed: uint64es_lastoid: Oides_top_eflags: c_intes_instrument: c_intes_finished: booles_exprcontexts: *mut Listes_subplanstates: *mut Listes_auxmodifytables: *mut Listes_per_tuple_exprcontext: *mut ExprContextes_epqTuple: *mut HeapTuplees_epqTupleSet: *mut booles_epqScanDone: *mut booles_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]

Auto Trait Implementations

impl RefUnwindSafe for EState

impl !Send for EState

impl !Sync for EState

impl Unpin for EState

impl UnwindSafe for EState

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, 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.