[][src]Struct pgx_pg_sys::TableFuncScanState

#[repr(C)]pub struct TableFuncScanState {
    pub ss: ScanState,
    pub docexpr: *mut ExprState,
    pub rowexpr: *mut ExprState,
    pub colexprs: *mut List,
    pub coldefexprs: *mut List,
    pub ns_names: *mut List,
    pub ns_uris: *mut List,
    pub notnulls: *mut Bitmapset,
    pub opaque: *mut c_void,
    pub routine: *mut TableFuncRoutine,
    pub in_functions: *mut FmgrInfo,
    pub typioparams: *mut Oid,
    pub ordinal: int64,
    pub perTableCxt: MemoryContext,
    pub tupstore: *mut Tuplestorestate,
}

Fields

ss: ScanStatedocexpr: *mut ExprStaterowexpr: *mut ExprStatecolexprs: *mut Listcoldefexprs: *mut Listns_names: *mut Listns_uris: *mut Listnotnulls: *mut Bitmapsetopaque: *mut c_voidroutine: *mut TableFuncRoutinein_functions: *mut FmgrInfotypioparams: *mut Oidordinal: int64perTableCxt: MemoryContexttupstore: *mut Tuplestorestate

Trait Implementations

impl Clone for TableFuncScanState[src]

impl Copy for TableFuncScanState[src]

impl Debug for TableFuncScanState[src]

impl Default for TableFuncScanState[src]

impl Display for TableFuncScanState[src]

impl PgNode for TableFuncScanState[src]

type NodeType = TableFuncScanState

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.