pub struct WalAppendTelemetrySnapshot {
pub append_success_total: u64,
pub append_failure_total: u64,
}Expand description
Snapshot of authoritative WAL append telemetry totals.
Fields§
§append_success_total: u64Total successful WAL append operations.
append_failure_total: u64Total failed WAL append operations.
Trait Implementations§
Source§impl Clone for WalAppendTelemetrySnapshot
impl Clone for WalAppendTelemetrySnapshot
Source§fn clone(&self) -> WalAppendTelemetrySnapshot
fn clone(&self) -> WalAppendTelemetrySnapshot
Returns a duplicate 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 WalAppendTelemetrySnapshot
impl Debug for WalAppendTelemetrySnapshot
impl Copy for WalAppendTelemetrySnapshot
impl Eq for WalAppendTelemetrySnapshot
impl StructuralPartialEq for WalAppendTelemetrySnapshot
Auto Trait Implementations§
impl Freeze for WalAppendTelemetrySnapshot
impl RefUnwindSafe for WalAppendTelemetrySnapshot
impl Send for WalAppendTelemetrySnapshot
impl Sync for WalAppendTelemetrySnapshot
impl Unpin for WalAppendTelemetrySnapshot
impl UnsafeUnpin for WalAppendTelemetrySnapshot
impl UnwindSafe for WalAppendTelemetrySnapshot
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