pub struct WalletResetCoinDbResult {
pub coins_dropped: u64,
pub staged_dropped: u64,
}Expand description
control.wallet.resetCoinDb — how much cache the reset actually discarded.
Both counts describe local, chain-derived cache rows dropped, never money lost — every one of
them is reproduced by the re-sync that follows. coins_dropped == 0 on an already-empty cache is
a SUCCESS, not a sign the reset failed to run.
Fields§
§coins_dropped: u64Confirmed coin rows discarded from the cache.
staged_dropped: u64Staged (not-yet-confirmed) coin rows discarded from the cache.
Trait Implementations§
Source§impl Clone for WalletResetCoinDbResult
impl Clone for WalletResetCoinDbResult
Source§fn clone(&self) -> WalletResetCoinDbResult
fn clone(&self) -> WalletResetCoinDbResult
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 WalletResetCoinDbResult
Source§impl Debug for WalletResetCoinDbResult
impl Debug for WalletResetCoinDbResult
Source§impl<'de> Deserialize<'de> for WalletResetCoinDbResult
impl<'de> Deserialize<'de> for WalletResetCoinDbResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for WalletResetCoinDbResult
Source§impl PartialEq for WalletResetCoinDbResult
impl PartialEq for WalletResetCoinDbResult
Source§impl Serialize for WalletResetCoinDbResult
impl Serialize for WalletResetCoinDbResult
impl StructuralPartialEq for WalletResetCoinDbResult
Auto Trait Implementations§
impl Freeze for WalletResetCoinDbResult
impl RefUnwindSafe for WalletResetCoinDbResult
impl Send for WalletResetCoinDbResult
impl Sync for WalletResetCoinDbResult
impl Unpin for WalletResetCoinDbResult
impl UnsafeUnpin for WalletResetCoinDbResult
impl UnwindSafe for WalletResetCoinDbResult
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