pub struct FullScanResult<K, A = ConfirmationTimeHeightAnchor> {
    pub graph_update: TxGraph<A>,
    pub chain_update: CheckPoint,
    pub last_active_indices: BTreeMap<K, u32>,
}
Expand description

Data returned from a spk-based blockchain client full scan.

See also FullScanRequest.

Fields§

§graph_update: TxGraph<A>

The update to apply to the receiving LocalChain.

§chain_update: CheckPoint

The update to apply to the receiving TxGraph.

§last_active_indices: BTreeMap<K, u32>

Last active indices for the corresponding keychains (K).

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.