#[repr(C)]
pub struct PgStat_StatDBEntry {Show fields
pub databaseid: Oid,
pub n_xact_commit: PgStat_Counter,
pub n_xact_rollback: PgStat_Counter,
pub n_blocks_fetched: PgStat_Counter,
pub n_blocks_hit: PgStat_Counter,
pub n_tuples_returned: PgStat_Counter,
pub n_tuples_fetched: PgStat_Counter,
pub n_tuples_inserted: PgStat_Counter,
pub n_tuples_updated: PgStat_Counter,
pub n_tuples_deleted: PgStat_Counter,
pub last_autovac_time: TimestampTz,
pub n_conflict_tablespace: PgStat_Counter,
pub n_conflict_lock: PgStat_Counter,
pub n_conflict_snapshot: PgStat_Counter,
pub n_conflict_bufferpin: PgStat_Counter,
pub n_conflict_startup_deadlock: PgStat_Counter,
pub n_temp_files: PgStat_Counter,
pub n_temp_bytes: PgStat_Counter,
pub n_deadlocks: PgStat_Counter,
pub n_checksum_failures: PgStat_Counter,
pub last_checksum_failure: TimestampTz,
pub n_block_read_time: PgStat_Counter,
pub n_block_write_time: PgStat_Counter,
pub stat_reset_timestamp: TimestampTz,
pub stats_timestamp: TimestampTz,
pub tables: *mut HTAB,
pub functions: *mut HTAB,
}
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
impl<T> Any for T where
T: 'static + ?Sized, [src]
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>, [src]
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.