Struct bdk_chain::spk_client::SyncResponse
source · 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 for SyncResponse<A>where
A: Debug,
impl<A> Debug for SyncResponse<A>where
A: Debug,
source§impl<A> Default for SyncResponse<A>
impl<A> Default for SyncResponse<A>
source§fn default() -> SyncResponse<A>
fn default() -> SyncResponse<A>
Returns the “default value” for a type. Read more
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