[][src]Struct pgx_pg_sys::pg11_specific::IndexScanDescData

#[repr(C)]pub struct IndexScanDescData {
    pub heapRelation: Relation,
    pub indexRelation: Relation,
    pub xs_snapshot: Snapshot,
    pub numberOfKeys: c_int,
    pub numberOfOrderBys: c_int,
    pub keyData: ScanKey,
    pub orderByData: ScanKey,
    pub xs_want_itup: bool,
    pub xs_temp_snap: bool,
    pub kill_prior_tuple: bool,
    pub ignore_killed_tuples: bool,
    pub xactStartedInRecovery: bool,
    pub opaque: *mut c_void,
    pub xs_itup: IndexTuple,
    pub xs_itupdesc: TupleDesc,
    pub xs_hitup: HeapTuple,
    pub xs_hitupdesc: TupleDesc,
    pub xs_ctup: HeapTupleData,
    pub xs_cbuf: Buffer,
    pub xs_recheck: bool,
    pub xs_orderbyvals: *mut Datum,
    pub xs_orderbynulls: *mut bool,
    pub xs_recheckorderby: bool,
    pub xs_continue_hot: bool,
    pub parallel_scan: ParallelIndexScanDesc,
}

Fields

heapRelation: RelationindexRelation: Relationxs_snapshot: SnapshotnumberOfKeys: c_intnumberOfOrderBys: c_intkeyData: ScanKeyorderByData: ScanKeyxs_want_itup: boolxs_temp_snap: boolkill_prior_tuple: boolignore_killed_tuples: boolxactStartedInRecovery: boolopaque: *mut c_voidxs_itup: IndexTuplexs_itupdesc: TupleDescxs_hitup: HeapTuplexs_hitupdesc: TupleDescxs_ctup: HeapTupleDataxs_cbuf: Bufferxs_recheck: boolxs_orderbyvals: *mut Datumxs_orderbynulls: *mut boolxs_recheckorderby: boolxs_continue_hot: boolparallel_scan: ParallelIndexScanDesc

Trait Implementations

impl Clone for IndexScanDescData[src]

impl Copy for IndexScanDescData[src]

impl Debug for IndexScanDescData[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.