[][src]Struct pgx_pg_sys::PgStat_TableXactStatus

#[repr(C)]pub struct PgStat_TableXactStatus {
    pub tuples_inserted: PgStat_Counter,
    pub tuples_updated: PgStat_Counter,
    pub tuples_deleted: PgStat_Counter,
    pub truncated: bool,
    pub inserted_pre_trunc: PgStat_Counter,
    pub updated_pre_trunc: PgStat_Counter,
    pub deleted_pre_trunc: PgStat_Counter,
    pub nest_level: c_int,
    pub upper: *mut PgStat_TableXactStatus,
    pub parent: *mut PgStat_TableStatus,
    pub next: *mut PgStat_TableXactStatus,
}

Fields

tuples_inserted: PgStat_Countertuples_updated: PgStat_Countertuples_deleted: PgStat_Countertruncated: boolinserted_pre_trunc: PgStat_Counterupdated_pre_trunc: PgStat_Counterdeleted_pre_trunc: PgStat_Counternest_level: c_intupper: *mut PgStat_TableXactStatusparent: *mut PgStat_TableStatusnext: *mut PgStat_TableXactStatus

Trait Implementations

impl Clone for PgStat_TableXactStatus[src]

impl Copy for PgStat_TableXactStatus[src]

impl Debug for PgStat_TableXactStatus[src]

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