[][src]Struct komodo_rpc_client::Transaction

pub struct Transaction {
    pub amount: f64,
    pub confirmations: u32,
    pub blockhash: Option<BlockHash>,
    pub blockindex: Option<u64>,
    pub blocktime: Option<u64>,
    pub walletconflicts: Vec<TransactionId>,
    pub expiryheight: u32,
    pub txid: TransactionId,
    pub time: u64,
    pub timereceived: u64,
    pub vjoinsplit: Vec<VJoinsplit>,
    pub details: Vec<Detail>,
    pub hex: String,
}

Fields

amount: f64confirmations: u32blockhash: Option<BlockHash>blockindex: Option<u64>

Unix Timestamp

blocktime: Option<u64>

Unix Timestamp

walletconflicts: Vec<TransactionId>expiryheight: u32txid: TransactionIdtime: u64

Unix Timestamp

timereceived: u64

Unix Timestamp

vjoinsplit: Vec<VJoinsplit>details: Vec<Detail>

yes|no|unknown: TODO: Create enum if needed

hex: String

Trait Implementations

impl Debug for Transaction[src]

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

impl Serialize for Transaction[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> 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.