Struct pgx_pg_sys::IncrementalSortState[][src]

#[repr(C)]
pub struct IncrementalSortState {
Show fields pub ss: ScanState, pub bounded: bool, pub bound: int64, pub outerNodeDone: bool, pub bound_Done: int64, pub execution_status: IncrementalSortExecutionStatus, pub n_fullsort_remaining: int64, pub fullsort_state: *mut Tuplesortstate, pub prefixsort_state: *mut Tuplesortstate, pub presorted_keys: *mut PresortedKeyData, pub incsort_info: IncrementalSortInfo, pub group_pivot: *mut TupleTableSlot, pub transfer_tuple: *mut TupleTableSlot, pub am_worker: bool, pub shared_info: *mut SharedIncrementalSortInfo,
}

Fields

ss: ScanStatebounded: boolbound: int64outerNodeDone: boolbound_Done: int64execution_status: IncrementalSortExecutionStatusn_fullsort_remaining: int64fullsort_state: *mut Tuplesortstateprefixsort_state: *mut Tuplesortstatepresorted_keys: *mut PresortedKeyDataincsort_info: IncrementalSortInfogroup_pivot: *mut TupleTableSlottransfer_tuple: *mut TupleTableSlotam_worker: boolshared_info: *mut SharedIncrementalSortInfo

Trait Implementations

impl Clone for IncrementalSortState[src]

impl Copy for IncrementalSortState[src]

impl Debug for IncrementalSortState[src]

impl Default for IncrementalSortState[src]

impl Display for IncrementalSortState[src]

impl PgNode for IncrementalSortState[src]

type NodeType = IncrementalSortState

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.