pub struct ListUnspentResultEntry {Show 13 fields
pub txid: Txid,
pub vout: u32,
pub address: Option<Address>,
pub label: Option<String>,
pub redeem_script: Option<Script>,
pub witness_script: Option<Script>,
pub script_pub_key: Script,
pub amount: Amount,
pub confirmations: u32,
pub spendable: bool,
pub solvable: bool,
pub descriptor: Option<String>,
pub safe: bool,
}
Fields
txid: Txid
vout: u32
address: Option<Address>
label: Option<String>
redeem_script: Option<Script>
witness_script: Option<Script>
script_pub_key: Script
amount: Amount
confirmations: u32
spendable: bool
solvable: bool
descriptor: Option<String>
safe: bool
Trait Implementations
sourceimpl Clone for ListUnspentResultEntry
impl Clone for ListUnspentResultEntry
sourcefn clone(&self) -> ListUnspentResultEntry
fn clone(&self) -> ListUnspentResultEntry
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 ListUnspentResultEntry
impl Debug for ListUnspentResultEntry
sourceimpl<'de> Deserialize<'de> for ListUnspentResultEntry
impl<'de> Deserialize<'de> for ListUnspentResultEntry
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<ListUnspentResultEntry> for ListUnspentResultEntry
impl PartialEq<ListUnspentResultEntry> for ListUnspentResultEntry
sourcefn eq(&self, other: &ListUnspentResultEntry) -> bool
fn eq(&self, other: &ListUnspentResultEntry) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl Serialize for ListUnspentResultEntry
impl Serialize for ListUnspentResultEntry
impl Eq for ListUnspentResultEntry
impl StructuralEq for ListUnspentResultEntry
impl StructuralPartialEq for ListUnspentResultEntry
Auto Trait Implementations
impl RefUnwindSafe for ListUnspentResultEntry
impl Send for ListUnspentResultEntry
impl Sync for ListUnspentResultEntry
impl Unpin for ListUnspentResultEntry
impl UnwindSafe for ListUnspentResultEntry
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