[][src]Union pgx_pg_sys::PgStat_Msg

#[repr(C)]pub union PgStat_Msg {
    pub msg_hdr: PgStat_MsgHdr,
    pub msg_dummy: PgStat_MsgDummy,
    pub msg_inquiry: PgStat_MsgInquiry,
    pub msg_tabstat: PgStat_MsgTabstat,
    pub msg_tabpurge: PgStat_MsgTabpurge,
    pub msg_dropdb: PgStat_MsgDropdb,
    pub msg_resetcounter: PgStat_MsgResetcounter,
    pub msg_resetsharedcounter: PgStat_MsgResetsharedcounter,
    pub msg_resetsinglecounter: PgStat_MsgResetsinglecounter,
    pub msg_resetslrucounter: PgStat_MsgResetslrucounter,
    pub msg_autovacuum_start: PgStat_MsgAutovacStart,
    pub msg_vacuum: PgStat_MsgVacuum,
    pub msg_analyze: PgStat_MsgAnalyze,
    pub msg_archiver: PgStat_MsgArchiver,
    pub msg_bgwriter: PgStat_MsgBgWriter,
    pub msg_slru: PgStat_MsgSLRU,
    pub msg_funcstat: PgStat_MsgFuncstat,
    pub msg_funcpurge: PgStat_MsgFuncpurge,
    pub msg_recoveryconflict: PgStat_MsgRecoveryConflict,
    pub msg_deadlock: PgStat_MsgDeadlock,
    pub msg_tempfile: PgStat_MsgTempFile,
    pub msg_checksumfailure: PgStat_MsgChecksumFailure,
    // some fields omitted
}

Fields

msg_hdr: PgStat_MsgHdrmsg_dummy: PgStat_MsgDummymsg_inquiry: PgStat_MsgInquirymsg_tabstat: PgStat_MsgTabstatmsg_tabpurge: PgStat_MsgTabpurgemsg_dropdb: PgStat_MsgDropdbmsg_resetcounter: PgStat_MsgResetcountermsg_resetsharedcounter: PgStat_MsgResetsharedcountermsg_resetsinglecounter: PgStat_MsgResetsinglecountermsg_resetslrucounter: PgStat_MsgResetslrucountermsg_autovacuum_start: PgStat_MsgAutovacStartmsg_vacuum: PgStat_MsgVacuummsg_analyze: PgStat_MsgAnalyzemsg_archiver: PgStat_MsgArchivermsg_bgwriter: PgStat_MsgBgWritermsg_slru: PgStat_MsgSLRUmsg_funcstat: PgStat_MsgFuncstatmsg_funcpurge: PgStat_MsgFuncpurgemsg_recoveryconflict: PgStat_MsgRecoveryConflictmsg_deadlock: PgStat_MsgDeadlockmsg_tempfile: PgStat_MsgTempFilemsg_checksumfailure: PgStat_MsgChecksumFailure

Trait Implementations

impl Clone for PgStat_Msg[src]

impl Copy for PgStat_Msg[src]

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