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
sourceimpl Clone for ScanTxOutResult
impl Clone for ScanTxOutResult
sourcefn clone(&self) -> ScanTxOutResult
fn clone(&self) -> ScanTxOutResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ScanTxOutResult
impl Debug for ScanTxOutResult
sourceimpl<'de> Deserialize<'de> for ScanTxOutResult
impl<'de> Deserialize<'de> for ScanTxOutResult
sourcefn 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
sourceimpl PartialEq<ScanTxOutResult> for ScanTxOutResult
impl PartialEq<ScanTxOutResult> for ScanTxOutResult
sourcefn 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 ==
. Read more
sourceimpl Serialize for ScanTxOutResult
impl Serialize for ScanTxOutResult
impl Eq for ScanTxOutResult
impl StructuralEq for ScanTxOutResult
impl StructuralPartialEq for ScanTxOutResult
Auto Trait Implementations
impl RefUnwindSafe for ScanTxOutResult
impl Send for ScanTxOutResult
impl Sync for ScanTxOutResult
impl Unpin for ScanTxOutResult
impl UnwindSafe for ScanTxOutResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more