pub struct ResetAppDataCounters {
pub reset_app_data_total: u64,
pub reset_app_data_timed_out: u64,
}Expand description
v1.0.14 Cluster A — public snapshot of CLI-side resetAppData
counter state. Populated by increment_reset_app_data_total +
increment_reset_app_data_timed_out as the CLI dispatches the
verb; loaded from disk on CLI startup if
set_reset_app_data_counters_persist_path was called.
Fields§
§reset_app_data_total: u64Total resetAppData dispatches (any outcome).
reset_app_data_timed_out: u64resetAppData dispatches where the completion signal did not
arrive inside the timeout window. > 0 = the URL was fired
but the app did not emit the expected reset-complete log line.
Trait Implementations§
Source§impl Clone for ResetAppDataCounters
impl Clone for ResetAppDataCounters
Source§fn clone(&self) -> ResetAppDataCounters
fn clone(&self) -> ResetAppDataCounters
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ResetAppDataCounters
Source§impl Debug for ResetAppDataCounters
impl Debug for ResetAppDataCounters
Source§impl Default for ResetAppDataCounters
impl Default for ResetAppDataCounters
Source§fn default() -> ResetAppDataCounters
fn default() -> ResetAppDataCounters
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ResetAppDataCounters
impl RefUnwindSafe for ResetAppDataCounters
impl Send for ResetAppDataCounters
impl Sync for ResetAppDataCounters
impl Unpin for ResetAppDataCounters
impl UnsafeUnpin for ResetAppDataCounters
impl UnwindSafe for ResetAppDataCounters
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