Struct bdk_chain::spk_client::FullScanResponse
source · pub struct FullScanResponse<K, A = ConfirmationBlockTime> {
pub tx_update: TxUpdate<A>,
pub last_active_indices: BTreeMap<K, u32>,
pub chain_update: Option<CheckPoint>,
}
Expand description
Data returned from a spk-based blockchain client full scan.
See also FullScanRequest
.
Fields§
§tx_update: TxUpdate<A>
Relevant transaction data discovered during the scan.
last_active_indices: BTreeMap<K, u32>
Last active indices for the corresponding keychains (K
). An index is active if it had a
transaction associated with the script pubkey at that index.
chain_update: Option<CheckPoint>
Changes to the chain discovered during the scan.
Trait Implementations§
source§impl<K, A> Debug for FullScanResponse<K, A>
impl<K, A> Debug for FullScanResponse<K, A>
source§impl<K, A> Default for FullScanResponse<K, A>
impl<K, A> Default for FullScanResponse<K, A>
source§fn default() -> FullScanResponse<K, A>
fn default() -> FullScanResponse<K, A>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<K, A> Freeze for FullScanResponse<K, A>
impl<K, A> RefUnwindSafe for FullScanResponse<K, A>where
K: RefUnwindSafe,
A: RefUnwindSafe,
impl<K, A> Send for FullScanResponse<K, A>
impl<K, A> Sync for FullScanResponse<K, A>
impl<K, A> Unpin for FullScanResponse<K, A>
impl<K, A> UnwindSafe for FullScanResponse<K, A>where
K: RefUnwindSafe,
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