[][src]Struct pgx_pg_sys::SubPlanState

#[repr(C)]pub struct SubPlanState {
    pub type_: NodeTag,
    pub subplan: *mut SubPlan,
    pub planstate: *mut PlanState,
    pub parent: *mut PlanState,
    pub testexpr: *mut ExprState,
    pub args: *mut List,
    pub curTuple: HeapTuple,
    pub curArray: Datum,
    pub descRight: TupleDesc,
    pub projLeft: *mut ProjectionInfo,
    pub projRight: *mut ProjectionInfo,
    pub hashtable: TupleHashTable,
    pub hashnulls: TupleHashTable,
    pub havehashrows: bool,
    pub havenullrows: bool,
    pub hashtablecxt: MemoryContext,
    pub hashtempcxt: MemoryContext,
    pub innerecontext: *mut ExprContext,
    pub numCols: c_int,
    pub keyColIdx: *mut AttrNumber,
    pub tab_eq_funcoids: *mut Oid,
    pub tab_collations: *mut Oid,
    pub tab_hash_funcs: *mut FmgrInfo,
    pub tab_eq_funcs: *mut FmgrInfo,
    pub lhs_hash_funcs: *mut FmgrInfo,
    pub cur_eq_funcs: *mut FmgrInfo,
    pub cur_eq_comp: *mut ExprState,
}

Fields

type_: NodeTagsubplan: *mut SubPlanplanstate: *mut PlanStateparent: *mut PlanStatetestexpr: *mut ExprStateargs: *mut ListcurTuple: HeapTuplecurArray: DatumdescRight: TupleDescprojLeft: *mut ProjectionInfoprojRight: *mut ProjectionInfohashtable: TupleHashTablehashnulls: TupleHashTablehavehashrows: boolhavenullrows: boolhashtablecxt: MemoryContexthashtempcxt: MemoryContextinnerecontext: *mut ExprContextnumCols: c_intkeyColIdx: *mut AttrNumbertab_eq_funcoids: *mut Oidtab_collations: *mut Oidtab_hash_funcs: *mut FmgrInfotab_eq_funcs: *mut FmgrInfolhs_hash_funcs: *mut FmgrInfocur_eq_funcs: *mut FmgrInfocur_eq_comp: *mut ExprState

Trait Implementations

impl Clone for SubPlanState[src]

impl Copy for SubPlanState[src]

impl Debug for SubPlanState[src]

impl Default for SubPlanState[src]

impl Display for SubPlanState[src]

impl PgNode for SubPlanState[src]

type NodeType = SubPlanState

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.