#[repr(C)]
pub struct ReorderBuffer {
Show 40 fields pub by_txn: *mut HTAB, pub toplevel_by_lsn: dlist_head, pub txns_by_base_snapshot_lsn: dlist_head, pub by_txn_last_xid: TransactionId, pub by_txn_last_txn: *mut ReorderBufferTXN, pub begin: ReorderBufferBeginCB, pub apply_change: ReorderBufferApplyChangeCB, pub apply_truncate: ReorderBufferApplyTruncateCB, pub commit: ReorderBufferCommitCB, pub message: ReorderBufferMessageCB, pub begin_prepare: ReorderBufferBeginCB, pub prepare: ReorderBufferPrepareCB, pub commit_prepared: ReorderBufferCommitPreparedCB, pub rollback_prepared: ReorderBufferRollbackPreparedCB, pub stream_start: ReorderBufferStreamStartCB, pub stream_stop: ReorderBufferStreamStopCB, pub stream_abort: ReorderBufferStreamAbortCB, pub stream_prepare: ReorderBufferStreamPrepareCB, pub stream_commit: ReorderBufferStreamCommitCB, pub stream_change: ReorderBufferStreamChangeCB, pub stream_message: ReorderBufferStreamMessageCB, pub stream_truncate: ReorderBufferStreamTruncateCB, pub private_data: *mut c_void, pub output_rewrites: bool, pub context: MemoryContext, pub change_context: MemoryContext, pub txn_context: MemoryContext, pub tup_context: MemoryContext, pub current_restart_decoding_lsn: XLogRecPtr, pub outbuf: *mut c_char, pub outbufsize: Size, pub size: Size, pub spillTxns: int64, pub spillCount: int64, pub spillBytes: int64, pub streamTxns: int64, pub streamCount: int64, pub streamBytes: int64, pub totalTxns: int64, pub totalBytes: int64,
}

Fields

by_txn: *mut HTABtoplevel_by_lsn: dlist_headtxns_by_base_snapshot_lsn: dlist_headby_txn_last_xid: TransactionIdby_txn_last_txn: *mut ReorderBufferTXNbegin: ReorderBufferBeginCBapply_change: ReorderBufferApplyChangeCBapply_truncate: ReorderBufferApplyTruncateCBcommit: ReorderBufferCommitCBmessage: ReorderBufferMessageCBbegin_prepare: ReorderBufferBeginCBprepare: ReorderBufferPrepareCBcommit_prepared: ReorderBufferCommitPreparedCBrollback_prepared: ReorderBufferRollbackPreparedCBstream_start: ReorderBufferStreamStartCBstream_stop: ReorderBufferStreamStopCBstream_abort: ReorderBufferStreamAbortCBstream_prepare: ReorderBufferStreamPrepareCBstream_commit: ReorderBufferStreamCommitCBstream_change: ReorderBufferStreamChangeCBstream_message: ReorderBufferStreamMessageCBstream_truncate: ReorderBufferStreamTruncateCBprivate_data: *mut c_voidoutput_rewrites: boolcontext: MemoryContextchange_context: MemoryContexttxn_context: MemoryContexttup_context: MemoryContextcurrent_restart_decoding_lsn: XLogRecPtroutbuf: *mut c_charoutbufsize: Sizesize: SizespillTxns: int64spillCount: int64spillBytes: int64streamTxns: int64streamCount: int64streamBytes: int64totalTxns: int64totalBytes: int64

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.