[][src]Struct nimiq_rpc::primitives::Transaction

pub struct Transaction {
    pub hash: String,
    pub block_hash: String,
    pub block_number: u64,
    pub timestamp: u64,
    pub confirmations: u64,
    pub from: String,
    pub from_address: String,
    pub to: String,
    pub to_address: String,
    pub value: u64,
    pub fee: u64,
    pub data: Value,
    pub flags: u32,
    // some fields omitted
}

Fields

hash: Stringblock_hash: Stringblock_number: u64timestamp: u64confirmations: u64from: Stringfrom_address: Stringto: Stringto_address: Stringvalue: u64fee: u64data: Valueflags: u32

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: Deserialize<'de>, 
[src]

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.