Struct pgx_pg_sys::SetOpState[][src]

#[repr(C)]
pub struct SetOpState { pub ps: PlanState, pub eqfunction: *mut ExprState, pub eqfuncoids: *mut Oid, pub hashfunctions: *mut FmgrInfo, pub setop_done: bool, pub numOutput: c_long, pub pergroup: SetOpStatePerGroup, pub grp_firstTuple: HeapTuple, pub hashtable: TupleHashTable, pub tableContext: MemoryContext, pub table_filled: bool, pub hashiter: TupleHashIterator, }

Fields

ps: PlanStateeqfunction: *mut ExprStateeqfuncoids: *mut Oidhashfunctions: *mut FmgrInfosetop_done: boolnumOutput: c_longpergroup: SetOpStatePerGroupgrp_firstTuple: HeapTuplehashtable: TupleHashTabletableContext: MemoryContexttable_filled: boolhashiter: TupleHashIterator

Trait Implementations

impl Clone for SetOpState[src]

impl Copy for SetOpState[src]

impl Debug for SetOpState[src]

impl Default for SetOpState[src]

impl Display for SetOpState[src]

impl PgNode for SetOpState[src]

type NodeType = SetOpState

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.