#[repr(C)]pub struct TableScanDescData {
pub rs_rd: Relation,
pub rs_snapshot: *mut SnapshotData,
pub rs_nkeys: c_int,
pub rs_key: *mut ScanKeyData,
pub rs_mintid: ItemPointerData,
pub rs_maxtid: ItemPointerData,
pub rs_flags: uint32,
pub rs_parallel: *mut ParallelTableScanDescData,
}
Fields§
§rs_rd: Relation
§rs_snapshot: *mut SnapshotData
§rs_nkeys: c_int
§rs_key: *mut ScanKeyData
§rs_mintid: ItemPointerData
§rs_maxtid: ItemPointerData
§rs_flags: uint32
§rs_parallel: *mut ParallelTableScanDescData
Trait Implementations§
Source§impl Clone for TableScanDescData
impl Clone for TableScanDescData
Source§fn clone(&self) -> TableScanDescData
fn clone(&self) -> TableScanDescData
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TableScanDescData
impl Debug for TableScanDescData
Source§impl Default for TableScanDescData
impl Default for TableScanDescData
impl Copy for TableScanDescData
Auto Trait Implementations§
impl Freeze for TableScanDescData
impl RefUnwindSafe for TableScanDescData
impl !Send for TableScanDescData
impl !Sync for TableScanDescData
impl Unpin for TableScanDescData
impl UnwindSafe for TableScanDescData
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more