#[repr(C)]
pub struct ReorderBufferTXN {
Show 33 fields pub txn_flags: bits32, pub xid: TransactionId, pub toplevel_xid: TransactionId, pub gid: *mut c_char, pub first_lsn: XLogRecPtr, pub final_lsn: XLogRecPtr, pub end_lsn: XLogRecPtr, pub toptxn: *mut ReorderBufferTXN, pub restart_decoding_lsn: XLogRecPtr, pub origin_id: RepOriginId, pub origin_lsn: XLogRecPtr, pub commit_time: TimestampTz, pub base_snapshot: Snapshot, pub base_snapshot_lsn: XLogRecPtr, pub base_snapshot_node: dlist_node, pub snapshot_now: Snapshot, pub command_id: CommandId, pub nentries: uint64, pub nentries_mem: uint64, pub changes: dlist_head, pub tuplecids: dlist_head, pub ntuplecids: uint64, pub tuplecid_hash: *mut HTAB, pub toast_hash: *mut HTAB, pub subtxns: dlist_head, pub nsubtxns: uint32, pub ninvalidations: uint32, pub invalidations: *mut SharedInvalidationMessage, pub node: dlist_node, pub size: Size, pub total_size: Size, pub concurrent_abort: bool, pub output_plugin_private: *mut c_void,
}

Fields

txn_flags: bits32xid: TransactionIdtoplevel_xid: TransactionIdgid: *mut c_charfirst_lsn: XLogRecPtrfinal_lsn: XLogRecPtrend_lsn: XLogRecPtrtoptxn: *mut ReorderBufferTXNrestart_decoding_lsn: XLogRecPtrorigin_id: RepOriginIdorigin_lsn: XLogRecPtrcommit_time: TimestampTzbase_snapshot: Snapshotbase_snapshot_lsn: XLogRecPtrbase_snapshot_node: dlist_nodesnapshot_now: Snapshotcommand_id: CommandIdnentries: uint64nentries_mem: uint64changes: dlist_headtuplecids: dlist_headntuplecids: uint64tuplecid_hash: *mut HTABtoast_hash: *mut HTABsubtxns: dlist_headnsubtxns: uint32ninvalidations: uint32invalidations: *mut SharedInvalidationMessagenode: dlist_nodesize: Sizetotal_size: Sizeconcurrent_abort: booloutput_plugin_private: *mut c_void

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.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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.