[][src]Struct pgx_pg_sys::xl_xact_prepare

#[repr(C)]pub struct xl_xact_prepare {
    pub magic: uint32,
    pub total_len: uint32,
    pub xid: TransactionId,
    pub database: Oid,
    pub prepared_at: TimestampTz,
    pub owner: Oid,
    pub nsubxacts: int32,
    pub ncommitrels: int32,
    pub nabortrels: int32,
    pub ninvalmsgs: int32,
    pub initfileinval: bool,
    pub gidlen: uint16,
    pub origin_lsn: XLogRecPtr,
    pub origin_timestamp: TimestampTz,
}

Fields

magic: uint32total_len: uint32xid: TransactionIddatabase: Oidprepared_at: TimestampTzowner: Oidnsubxacts: int32ncommitrels: int32nabortrels: int32ninvalmsgs: int32initfileinval: boolgidlen: uint16origin_lsn: XLogRecPtrorigin_timestamp: TimestampTz

Trait Implementations

impl Clone for xl_xact_prepare[src]

impl Copy for xl_xact_prepare[src]

impl Debug for xl_xact_prepare[src]

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