Struct pgrx_pg_sys::PgStat_MsgTabstat
source · #[repr(C)]pub struct PgStat_MsgTabstat {
pub m_hdr: PgStat_MsgHdr,
pub m_databaseid: Oid,
pub m_nentries: c_int,
pub m_xact_commit: c_int,
pub m_xact_rollback: c_int,
pub m_block_read_time: PgStat_Counter,
pub m_block_write_time: PgStat_Counter,
pub m_session_time: PgStat_Counter,
pub m_active_time: PgStat_Counter,
pub m_idle_in_xact_time: PgStat_Counter,
pub m_entry: [PgStat_TableEntry; 8],
}
Fields§
§m_hdr: PgStat_MsgHdr
§m_databaseid: Oid
§m_nentries: c_int
§m_xact_commit: c_int
§m_xact_rollback: c_int
§m_block_read_time: PgStat_Counter
§m_block_write_time: PgStat_Counter
§m_session_time: PgStat_Counter
§m_active_time: PgStat_Counter
§m_idle_in_xact_time: PgStat_Counter
§m_entry: [PgStat_TableEntry; 8]
Trait Implementations§
source§impl Clone for PgStat_MsgTabstat
impl Clone for PgStat_MsgTabstat
source§fn clone(&self) -> PgStat_MsgTabstat
fn clone(&self) -> PgStat_MsgTabstat
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PgStat_MsgTabstat
impl Debug for PgStat_MsgTabstat
source§impl Default for PgStat_MsgTabstat
impl Default for PgStat_MsgTabstat
impl Copy for PgStat_MsgTabstat
Auto Trait Implementations§
impl Freeze for PgStat_MsgTabstat
impl RefUnwindSafe for PgStat_MsgTabstat
impl Send for PgStat_MsgTabstat
impl Sync for PgStat_MsgTabstat
impl Unpin for PgStat_MsgTabstat
impl UnwindSafe for PgStat_MsgTabstat
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more