[][src]Struct pgx_pg_sys::pg11_specific::HeapScanDescData

#[repr(C)]pub struct HeapScanDescData {
    pub rs_rd: Relation,
    pub rs_snapshot: Snapshot,
    pub rs_nkeys: c_int,
    pub rs_key: ScanKey,
    pub rs_bitmapscan: bool,
    pub rs_samplescan: bool,
    pub rs_pageatatime: bool,
    pub rs_allow_strat: bool,
    pub rs_allow_sync: bool,
    pub rs_temp_snap: bool,
    pub rs_nblocks: BlockNumber,
    pub rs_startblock: BlockNumber,
    pub rs_numblocks: BlockNumber,
    pub rs_strategy: BufferAccessStrategy,
    pub rs_syncscan: bool,
    pub rs_inited: bool,
    pub rs_ctup: HeapTupleData,
    pub rs_cblock: BlockNumber,
    pub rs_cbuf: Buffer,
    pub rs_parallel: ParallelHeapScanDesc,
    pub rs_cindex: c_int,
    pub rs_ntuples: c_int,
    pub rs_vistuples: [OffsetNumber; 291],
}

Fields

rs_rd: Relationrs_snapshot: Snapshotrs_nkeys: c_intrs_key: ScanKeyrs_bitmapscan: boolrs_samplescan: boolrs_pageatatime: boolrs_allow_strat: boolrs_allow_sync: boolrs_temp_snap: boolrs_nblocks: BlockNumberrs_startblock: BlockNumberrs_numblocks: BlockNumberrs_strategy: BufferAccessStrategyrs_syncscan: boolrs_inited: boolrs_ctup: HeapTupleDatars_cblock: BlockNumberrs_cbuf: Bufferrs_parallel: ParallelHeapScanDescrs_cindex: c_intrs_ntuples: c_intrs_vistuples: [OffsetNumber; 291]

Trait Implementations

impl Clone for HeapScanDescData[src]

impl Copy for HeapScanDescData[src]

impl Default for HeapScanDescData[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.