#[repr(C)]pub struct PgStat_WalStats {
pub wal_records: PgStat_Counter,
pub wal_fpi: PgStat_Counter,
pub wal_bytes: uint64,
pub wal_buffers_full: PgStat_Counter,
pub wal_write: PgStat_Counter,
pub wal_sync: PgStat_Counter,
pub wal_write_time: PgStat_Counter,
pub wal_sync_time: PgStat_Counter,
pub stat_reset_timestamp: TimestampTz,
}
Fields§
§wal_records: PgStat_Counter
§wal_fpi: PgStat_Counter
§wal_bytes: uint64
§wal_buffers_full: PgStat_Counter
§wal_write: PgStat_Counter
§wal_sync: PgStat_Counter
§wal_write_time: PgStat_Counter
§wal_sync_time: PgStat_Counter
§stat_reset_timestamp: TimestampTz
Trait Implementations§
Source§impl Clone for PgStat_WalStats
impl Clone for PgStat_WalStats
Source§fn clone(&self) -> PgStat_WalStats
fn clone(&self) -> PgStat_WalStats
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_WalStats
impl Debug for PgStat_WalStats
Source§impl Default for PgStat_WalStats
impl Default for PgStat_WalStats
Source§fn default() -> PgStat_WalStats
fn default() -> PgStat_WalStats
Returns the “default value” for a type. Read more
impl Copy for PgStat_WalStats
Auto Trait Implementations§
impl Freeze for PgStat_WalStats
impl RefUnwindSafe for PgStat_WalStats
impl Send for PgStat_WalStats
impl Sync for PgStat_WalStats
impl Unpin for PgStat_WalStats
impl UnwindSafe for PgStat_WalStats
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