pub struct SyncResponse<A = ConfirmationBlockTime> {
pub tx_update: TxUpdate<A>,
pub chain_update: Option<CheckPoint>,
}
Expand description
Data returned from a spk-based blockchain client sync.
See also SyncRequest
.
Fields§
§tx_update: TxUpdate<A>
Relevant transaction data discovered during the scan.
chain_update: Option<CheckPoint>
Changes to the chain discovered during the scan.
Trait Implementations§
Source§impl<A: Debug> Debug for SyncResponse<A>
impl<A: Debug> Debug for SyncResponse<A>
Auto Trait Implementations§
impl<A> Freeze for SyncResponse<A>
impl<A> RefUnwindSafe for SyncResponse<A>where
A: RefUnwindSafe,
impl<A> Send for SyncResponse<A>where
A: Send,
impl<A> Sync for SyncResponse<A>where
A: Sync,
impl<A> Unpin for SyncResponse<A>
impl<A> UnwindSafe for SyncResponse<A>where
A: RefUnwindSafe,
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