#[repr(C)]
pub struct IndexScanDescData {
Show 25 fields pub heapRelation: Relation, pub indexRelation: Relation, pub xs_snapshot: *mut SnapshotData, pub numberOfKeys: c_int, pub numberOfOrderBys: c_int, pub keyData: *mut ScanKeyData, pub orderByData: *mut ScanKeyData, pub xs_want_itup: bool, pub xs_temp_snap: bool, pub kill_prior_tuple: bool, pub ignore_killed_tuples: bool, pub xactStartedInRecovery: bool, pub opaque: *mut c_void, pub xs_itup: IndexTuple, pub xs_itupdesc: *mut TupleDescData, pub xs_hitup: HeapTuple, pub xs_hitupdesc: *mut TupleDescData, pub xs_heaptid: ItemPointerData, pub xs_heap_continue: bool, pub xs_heapfetch: *mut IndexFetchTableData, pub xs_recheck: bool, pub xs_orderbyvals: *mut Datum, pub xs_orderbynulls: *mut bool, pub xs_recheckorderby: bool, pub parallel_scan: *mut ParallelIndexScanDescData,
}

Fields§

§heapRelation: Relation§indexRelation: Relation§xs_snapshot: *mut SnapshotData§numberOfKeys: c_int§numberOfOrderBys: c_int§keyData: *mut ScanKeyData§orderByData: *mut ScanKeyData§xs_want_itup: bool§xs_temp_snap: bool§kill_prior_tuple: bool§ignore_killed_tuples: bool§xactStartedInRecovery: bool§opaque: *mut c_void§xs_itup: IndexTuple§xs_itupdesc: *mut TupleDescData§xs_hitup: HeapTuple§xs_hitupdesc: *mut TupleDescData§xs_heaptid: ItemPointerData§xs_heap_continue: bool§xs_heapfetch: *mut IndexFetchTableData§xs_recheck: bool§xs_orderbyvals: *mut Datum§xs_orderbynulls: *mut bool§xs_recheckorderby: bool§parallel_scan: *mut ParallelIndexScanDescData

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more