#[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: TimestampTz
§ckpt_write_t: TimestampTz
§ckpt_sync_t: TimestampTz
§ckpt_sync_end_t: TimestampTz
§ckpt_end_t: TimestampTz
§ckpt_bufs_written: c_int
§ckpt_segs_added: c_int
§ckpt_segs_removed: c_int
§ckpt_segs_recycled: c_int
§ckpt_sync_rels: c_int
§ckpt_longest_sync: uint64
§ckpt_agg_sync_time: uint64
Trait Implementations§
Source§impl Clone for CheckpointStatsData
impl Clone for CheckpointStatsData
Source§fn clone(&self) -> CheckpointStatsData
fn clone(&self) -> CheckpointStatsData
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 CheckpointStatsData
impl Debug for CheckpointStatsData
Source§impl Default for CheckpointStatsData
impl Default for CheckpointStatsData
Source§fn default() -> CheckpointStatsData
fn default() -> CheckpointStatsData
Returns the “default value” for a type. Read more
impl Copy for CheckpointStatsData
Auto Trait Implementations§
impl Freeze for CheckpointStatsData
impl RefUnwindSafe for CheckpointStatsData
impl Send for CheckpointStatsData
impl Sync for CheckpointStatsData
impl Unpin for CheckpointStatsData
impl UnwindSafe for CheckpointStatsData
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