Struct pgrx_pg_sys::PgStat_StatTabEntry
source · #[repr(C)]pub struct PgStat_StatTabEntry {Show 23 fields
pub tableid: Oid,
pub numscans: PgStat_Counter,
pub tuples_returned: PgStat_Counter,
pub tuples_fetched: PgStat_Counter,
pub tuples_inserted: PgStat_Counter,
pub tuples_updated: PgStat_Counter,
pub tuples_deleted: PgStat_Counter,
pub tuples_hot_updated: PgStat_Counter,
pub n_live_tuples: PgStat_Counter,
pub n_dead_tuples: PgStat_Counter,
pub changes_since_analyze: PgStat_Counter,
pub unused_counter: PgStat_Counter,
pub inserts_since_vacuum: PgStat_Counter,
pub blocks_fetched: PgStat_Counter,
pub blocks_hit: PgStat_Counter,
pub vacuum_timestamp: TimestampTz,
pub vacuum_count: PgStat_Counter,
pub autovac_vacuum_timestamp: TimestampTz,
pub autovac_vacuum_count: PgStat_Counter,
pub analyze_timestamp: TimestampTz,
pub analyze_count: PgStat_Counter,
pub autovac_analyze_timestamp: TimestampTz,
pub autovac_analyze_count: PgStat_Counter,
}
Fields§
§tableid: Oid
§numscans: PgStat_Counter
§tuples_returned: PgStat_Counter
§tuples_fetched: PgStat_Counter
§tuples_inserted: PgStat_Counter
§tuples_updated: PgStat_Counter
§tuples_deleted: PgStat_Counter
§tuples_hot_updated: PgStat_Counter
§n_live_tuples: PgStat_Counter
§n_dead_tuples: PgStat_Counter
§changes_since_analyze: PgStat_Counter
§unused_counter: PgStat_Counter
§inserts_since_vacuum: PgStat_Counter
§blocks_fetched: PgStat_Counter
§blocks_hit: PgStat_Counter
§vacuum_timestamp: TimestampTz
§vacuum_count: PgStat_Counter
§autovac_vacuum_timestamp: TimestampTz
§autovac_vacuum_count: PgStat_Counter
§analyze_timestamp: TimestampTz
§analyze_count: PgStat_Counter
§autovac_analyze_timestamp: TimestampTz
§autovac_analyze_count: PgStat_Counter
Trait Implementations§
source§impl Clone for PgStat_StatTabEntry
impl Clone for PgStat_StatTabEntry
source§fn clone(&self) -> PgStat_StatTabEntry
fn clone(&self) -> PgStat_StatTabEntry
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_StatTabEntry
impl Debug for PgStat_StatTabEntry
source§impl Default for PgStat_StatTabEntry
impl Default for PgStat_StatTabEntry
impl Copy for PgStat_StatTabEntry
Auto Trait Implementations§
impl Freeze for PgStat_StatTabEntry
impl RefUnwindSafe for PgStat_StatTabEntry
impl Send for PgStat_StatTabEntry
impl Sync for PgStat_StatTabEntry
impl Unpin for PgStat_StatTabEntry
impl UnwindSafe for PgStat_StatTabEntry
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