[][src]Struct pgx_pg_sys::pg11_specific::IndexScanState

#[repr(C)]pub struct IndexScanState {
    pub ss: ScanState,
    pub indexqualorig: *mut ExprState,
    pub indexorderbyorig: *mut List,
    pub iss_ScanKeys: ScanKey,
    pub iss_NumScanKeys: c_int,
    pub iss_OrderByKeys: ScanKey,
    pub iss_NumOrderByKeys: c_int,
    pub iss_RuntimeKeys: *mut IndexRuntimeKeyInfo,
    pub iss_NumRuntimeKeys: c_int,
    pub iss_RuntimeKeysReady: bool,
    pub iss_RuntimeContext: *mut ExprContext,
    pub iss_RelationDesc: Relation,
    pub iss_ScanDesc: IndexScanDesc,
    pub iss_ReorderQueue: *mut pairingheap,
    pub iss_ReachedEnd: bool,
    pub iss_OrderByValues: *mut Datum,
    pub iss_OrderByNulls: *mut bool,
    pub iss_SortSupport: SortSupport,
    pub iss_OrderByTypByVals: *mut bool,
    pub iss_OrderByTypLens: *mut int16,
    pub iss_PscanLen: Size,
}

Fields

ss: ScanStateindexqualorig: *mut ExprStateindexorderbyorig: *mut Listiss_ScanKeys: ScanKeyiss_NumScanKeys: c_intiss_OrderByKeys: ScanKeyiss_NumOrderByKeys: c_intiss_RuntimeKeys: *mut IndexRuntimeKeyInfoiss_NumRuntimeKeys: c_intiss_RuntimeKeysReady: booliss_RuntimeContext: *mut ExprContextiss_RelationDesc: Relationiss_ScanDesc: IndexScanDesciss_ReorderQueue: *mut pairingheapiss_ReachedEnd: booliss_OrderByValues: *mut Datumiss_OrderByNulls: *mut booliss_SortSupport: SortSupportiss_OrderByTypByVals: *mut booliss_OrderByTypLens: *mut int16iss_PscanLen: Size

Trait Implementations

impl Clone for IndexScanState[src]

impl Copy for IndexScanState[src]

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