[][src]Struct komodo_rpc_client::Unspent

pub struct Unspent {
    pub txid: TransactionId,
    pub vout: u8,
    pub generated: bool,
    pub address: Address,
    pub account: Option<String>,
    pub amount: f64,
    pub interest: Option<f64>,
    pub script_pub_key: String,
    pub rawconfirmations: u64,
    pub confirmations: u64,
    pub spendable: bool,
}

Fields

txid: TransactionIdvout: u8generated: booladdress: Addressaccount: Option<String>amount: f64interest: Option<f64>script_pub_key: Stringrawconfirmations: u64confirmations: u64spendable: bool

Trait Implementations

impl Debug for Unspent[src]

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

Auto Trait Implementations

impl RefUnwindSafe for Unspent

impl Send for Unspent

impl Sync for Unspent

impl Unpin for Unspent

impl UnwindSafe for Unspent

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> Erased for T

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

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

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.