[][src]Struct pgx_pg_sys::HeapScanDescData

#[repr(C)]pub struct HeapScanDescData {
    pub rs_base: TableScanDescData,
    pub rs_nblocks: BlockNumber,
    pub rs_startblock: BlockNumber,
    pub rs_numblocks: BlockNumber,
    pub rs_inited: bool,
    pub rs_cblock: BlockNumber,
    pub rs_cbuf: Buffer,
    pub rs_strategy: BufferAccessStrategy,
    pub rs_ctup: HeapTupleData,
    pub rs_cindex: c_int,
    pub rs_ntuples: c_int,
    pub rs_vistuples: [OffsetNumber; 291],
}

Fields

rs_base: TableScanDescDatars_nblocks: BlockNumberrs_startblock: BlockNumberrs_numblocks: BlockNumberrs_inited: boolrs_cblock: BlockNumberrs_cbuf: Bufferrs_strategy: BufferAccessStrategyrs_ctup: HeapTupleDatars_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.