pub struct ScanTxoutSetResponse {
pub bestblock: String,
pub field_3: (),
pub height: u64,
pub progress: u64,
pub success: bool,
pub success_1: bool,
pub total_amount: Amount,
pub txouts: u64,
pub unspents: Value,
}Expand description
Response for the ScanTxOutSet RPC method
Fields§
§bestblock: StringThe hash of the block at the tip of the chain
field_3: ()§height: u64The block height at which the scan was done
progress: u64Approximate percent complete
success: boolWhether the scan was completed
success_1: boolTrue if scan will be aborted (not necessarily before this RPC returns), or false if there is no scan to abort
total_amount: AmountThe total amount of all found unspent outputs in BTC
txouts: u64The number of unspent transaction outputs scanned
unspents: ValueTrait Implementations§
Source§impl Clone for ScanTxoutSetResponse
impl Clone for ScanTxoutSetResponse
Source§fn clone(&self) -> ScanTxoutSetResponse
fn clone(&self) -> ScanTxoutSetResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ScanTxoutSetResponse
impl Debug for ScanTxoutSetResponse
Source§impl<'de> Deserialize<'de> for ScanTxoutSetResponse
impl<'de> Deserialize<'de> for ScanTxoutSetResponse
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
Source§impl PartialEq for ScanTxoutSetResponse
impl PartialEq for ScanTxoutSetResponse
Source§impl Serialize for ScanTxoutSetResponse
impl Serialize for ScanTxoutSetResponse
impl StructuralPartialEq for ScanTxoutSetResponse
Auto Trait Implementations§
impl Freeze for ScanTxoutSetResponse
impl RefUnwindSafe for ScanTxoutSetResponse
impl Send for ScanTxoutSetResponse
impl Sync for ScanTxoutSetResponse
impl Unpin for ScanTxoutSetResponse
impl UnwindSafe for ScanTxoutSetResponse
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