[][src]Struct liquid_rpc_json::ListUnspentResultEntry

pub struct ListUnspentResultEntry {
    pub txid: Hash,
    pub vout: u32,
    pub address: Option<String>,
    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,
    pub asset: AssetId,
    pub asset_commitment: Option<Vec<u8>>,
    pub amount_commitment: Option<Vec<u8>>,
    pub amount_blinding_factor: Vec<u8>,
    pub asset_blinding_factor: Vec<u8>,
}

Fields

txid: Hashvout: u32address: Option<String>label: Option<String>redeem_script: Option<Script>witness_script: Option<Script>script_pub_key: Scriptamount: Amountconfirmations: u32spendable: boolsolvable: booldescriptor: Option<String>safe: boolasset: AssetIdasset_commitment: Option<Vec<u8>>amount_commitment: Option<Vec<u8>>amount_blinding_factor: Vec<u8>asset_blinding_factor: Vec<u8>

Trait Implementations

impl Clone for ListUnspentResultEntry[src]

impl Debug for ListUnspentResultEntry[src]

impl<'de> Deserialize<'de> for ListUnspentResultEntry[src]

impl Eq for ListUnspentResultEntry[src]

impl PartialEq<ListUnspentResultEntry> for ListUnspentResultEntry[src]

impl Serialize for ListUnspentResultEntry[src]

impl StructuralEq for ListUnspentResultEntry[src]

impl StructuralPartialEq for ListUnspentResultEntry[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any