Struct bitcoincore_rpc_json::ListUnspentResult 
source · pub struct ListUnspentResult {
    pub txid: Sha256dHash,
    pub vout: u32,
    pub address: Address,
    pub script_pub_key: Script,
    pub amount: Amount,
    pub confirmations: usize,
    pub redeem_script: Option<Script>,
    pub spendable: bool,
    pub solvable: bool,
    pub safe: bool,
}Fields
txid: Sha256dHashvout: u32address: Addressscript_pub_key: Scriptamount: Amountconfirmations: usizeredeem_script: Option<Script>spendable: boolsolvable: boolsafe: boolTrait Implementations
sourceimpl Clone for ListUnspentResult
 
impl Clone for ListUnspentResult
sourcefn clone(&self) -> ListUnspentResult
 
fn clone(&self) -> ListUnspentResult
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 moresourceimpl Debug for ListUnspentResult
 
impl Debug for ListUnspentResult
sourceimpl<'de> Deserialize<'de> for ListUnspentResult
 
impl<'de> Deserialize<'de> for ListUnspentResult
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<ListUnspentResult> for ListUnspentResult
 
impl PartialEq<ListUnspentResult> for ListUnspentResult
sourcefn eq(&self, other: &ListUnspentResult) -> bool
 
fn eq(&self, other: &ListUnspentResult) -> bool
sourceimpl Serialize for ListUnspentResult
 
impl Serialize for ListUnspentResult
impl Eq for ListUnspentResult
impl StructuralEq for ListUnspentResult
impl StructuralPartialEq for ListUnspentResult
Auto Trait Implementations
impl RefUnwindSafe for ListUnspentResult
impl Send for ListUnspentResult
impl Sync for ListUnspentResult
impl Unpin for ListUnspentResult
impl UnwindSafe for ListUnspentResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    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