[][src]Struct pgx_pg_sys::ReorderBuffer

#[repr(C)]pub struct ReorderBuffer {
    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 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,
}

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: ReorderBufferMessageCBprivate_data: *mut c_voidoutput_rewrites: boolcontext: MemoryContextchange_context: MemoryContexttxn_context: MemoryContexttup_context: MemoryContextcurrent_restart_decoding_lsn: XLogRecPtroutbuf: *mut c_charoutbufsize: Sizesize: Size

Trait Implementations

impl Clone for ReorderBuffer[src]

impl Copy for ReorderBuffer[src]

impl Debug for ReorderBuffer[src]

impl Default for ReorderBuffer[src]

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, 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.