[][src]Struct pgx_pg_sys::SnapshotData

#[repr(C)]pub struct SnapshotData {
    pub snapshot_type: SnapshotType,
    pub xmin: TransactionId,
    pub xmax: TransactionId,
    pub xip: *mut TransactionId,
    pub xcnt: uint32,
    pub subxip: *mut TransactionId,
    pub subxcnt: int32,
    pub suboverflowed: bool,
    pub takenDuringRecovery: bool,
    pub copied: bool,
    pub curcid: CommandId,
    pub speculativeToken: uint32,
    pub active_count: uint32,
    pub regd_count: uint32,
    pub ph_node: pairingheap_node,
    pub whenTaken: TimestampTz,
    pub lsn: XLogRecPtr,
}

Fields

snapshot_type: SnapshotTypexmin: TransactionIdxmax: TransactionIdxip: *mut TransactionIdxcnt: uint32subxip: *mut TransactionIdsubxcnt: int32suboverflowed: booltakenDuringRecovery: boolcopied: boolcurcid: CommandIdspeculativeToken: uint32active_count: uint32regd_count: uint32ph_node: pairingheap_nodewhenTaken: TimestampTzlsn: XLogRecPtr

Trait Implementations

impl Clone for SnapshotData[src]

impl Copy for SnapshotData[src]

impl Debug for SnapshotData[src]

impl Default for SnapshotData[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.