Struct bitcoincore_rpc_json::ScanTxOutResult
source · pub struct ScanTxOutResult {
pub success: Option<bool>,
pub tx_outs: Option<u64>,
pub height: Option<u64>,
pub best_block_hash: Option<BlockHash>,
pub unspents: Vec<Utxo>,
pub total_amount: Amount,
}
Fields§
§success: Option<bool>
§tx_outs: Option<u64>
§height: Option<u64>
§best_block_hash: Option<BlockHash>
§unspents: Vec<Utxo>
§total_amount: Amount
Trait Implementations§
source§impl Clone for ScanTxOutResult
impl Clone for ScanTxOutResult
source§fn clone(&self) -> ScanTxOutResult
fn clone(&self) -> ScanTxOutResult
Returns a copy 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 ScanTxOutResult
impl Debug for ScanTxOutResult
source§impl<'de> Deserialize<'de> for ScanTxOutResult
impl<'de> Deserialize<'de> for ScanTxOutResult
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 ScanTxOutResult
impl PartialEq for ScanTxOutResult
source§fn eq(&self, other: &ScanTxOutResult) -> bool
fn eq(&self, other: &ScanTxOutResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ScanTxOutResult
impl Serialize for ScanTxOutResult
impl Eq for ScanTxOutResult
impl StructuralPartialEq for ScanTxOutResult
Auto Trait Implementations§
impl Freeze for ScanTxOutResult
impl RefUnwindSafe for ScanTxOutResult
impl Send for ScanTxOutResult
impl Sync for ScanTxOutResult
impl Unpin for ScanTxOutResult
impl UnwindSafe for ScanTxOutResult
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