Struct pgx_pg_sys::IndexOnlyScanState[][src]

#[repr(C)]
pub struct IndexOnlyScanState {
Show fields pub ss: ScanState, pub indexqual: *mut ExprState, pub ioss_ScanKeys: *mut ScanKeyData, pub ioss_NumScanKeys: c_int, pub ioss_OrderByKeys: *mut ScanKeyData, pub ioss_NumOrderByKeys: c_int, pub ioss_RuntimeKeys: *mut IndexRuntimeKeyInfo, pub ioss_NumRuntimeKeys: c_int, pub ioss_RuntimeKeysReady: bool, pub ioss_RuntimeContext: *mut ExprContext, pub ioss_RelationDesc: Relation, pub ioss_ScanDesc: *mut IndexScanDescData, pub ioss_TableSlot: *mut TupleTableSlot, pub ioss_VMBuffer: Buffer, pub ioss_PscanLen: Size,
}

Fields

ss: ScanStateindexqual: *mut ExprStateioss_ScanKeys: *mut ScanKeyDataioss_NumScanKeys: c_intioss_OrderByKeys: *mut ScanKeyDataioss_NumOrderByKeys: c_intioss_RuntimeKeys: *mut IndexRuntimeKeyInfoioss_NumRuntimeKeys: c_intioss_RuntimeKeysReady: boolioss_RuntimeContext: *mut ExprContextioss_RelationDesc: Relationioss_ScanDesc: *mut IndexScanDescDataioss_TableSlot: *mut TupleTableSlotioss_VMBuffer: Bufferioss_PscanLen: Size

Trait Implementations

impl Clone for IndexOnlyScanState[src]

impl Copy for IndexOnlyScanState[src]

impl Debug for IndexOnlyScanState[src]

impl Default for IndexOnlyScanState[src]

impl Display for IndexOnlyScanState[src]

impl PgNode for IndexOnlyScanState[src]

type NodeType = IndexOnlyScanState

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> ToString for T where
    T: Display + ?Sized
[src]

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.