Struct pgx_pg_sys::TupleHashTableData[][src]

#[repr(C)]
pub struct TupleHashTableData {
Show fields pub hashtab: *mut tuplehash_hash, pub numCols: c_int, pub keyColIdx: *mut AttrNumber, pub tab_hash_funcs: *mut FmgrInfo, pub tab_eq_func: *mut ExprState, pub tab_collations: *mut Oid, pub tablecxt: MemoryContext, pub tempcxt: MemoryContext, pub entrysize: Size, pub tableslot: *mut TupleTableSlot, pub inputslot: *mut TupleTableSlot, pub in_hash_funcs: *mut FmgrInfo, pub cur_eq_func: *mut ExprState, pub hash_iv: uint32, pub exprcontext: *mut ExprContext,
}

Fields

hashtab: *mut tuplehash_hashnumCols: c_intkeyColIdx: *mut AttrNumbertab_hash_funcs: *mut FmgrInfotab_eq_func: *mut ExprStatetab_collations: *mut Oidtablecxt: MemoryContexttempcxt: MemoryContextentrysize: Sizetableslot: *mut TupleTableSlotinputslot: *mut TupleTableSlotin_hash_funcs: *mut FmgrInfocur_eq_func: *mut ExprStatehash_iv: uint32exprcontext: *mut ExprContext

Trait Implementations

impl Clone for TupleHashTableData[src]

impl Copy for TupleHashTableData[src]

impl Debug for TupleHashTableData[src]

impl Default for TupleHashTableData[src]

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