[][src]Struct pgx_pg_sys::CheckpointStatsData

#[repr(C)]pub struct CheckpointStatsData {
    pub ckpt_start_t: TimestampTz,
    pub ckpt_write_t: TimestampTz,
    pub ckpt_sync_t: TimestampTz,
    pub ckpt_sync_end_t: TimestampTz,
    pub ckpt_end_t: TimestampTz,
    pub ckpt_bufs_written: c_int,
    pub ckpt_segs_added: c_int,
    pub ckpt_segs_removed: c_int,
    pub ckpt_segs_recycled: c_int,
    pub ckpt_sync_rels: c_int,
    pub ckpt_longest_sync: uint64,
    pub ckpt_agg_sync_time: uint64,
}

Fields

ckpt_start_t: TimestampTzckpt_write_t: TimestampTzckpt_sync_t: TimestampTzckpt_sync_end_t: TimestampTzckpt_end_t: TimestampTzckpt_bufs_written: c_intckpt_segs_added: c_intckpt_segs_removed: c_intckpt_segs_recycled: c_intckpt_sync_rels: c_intckpt_longest_sync: uint64ckpt_agg_sync_time: uint64

Trait Implementations

impl Clone for CheckpointStatsData[src]

impl Copy for CheckpointStatsData[src]

impl Debug for CheckpointStatsData[src]

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