Struct in3_sys::btc_transaction[][src]

#[repr(C)]pub struct btc_transaction {
    pub in_active_chain: bool,
    pub data: bytes_t,
    pub txid: bytes32_t,
    pub hash: bytes32_t,
    pub size: u32,
    pub vsize: u32,
    pub weight: u32,
    pub version: u32,
    pub locktime: u32,
    pub vin: *mut btc_transaction_in_t,
    pub vout: *mut btc_transaction_out_t,
    pub vin_len: u32,
    pub vout_len: u32,
    pub blockhash: bytes32_t,
    pub confirmations: u32,
    pub time: u32,
    pub blocktime: u32,
}

Fields

in_active_chain: booldata: bytes_ttxid: bytes32_thash: bytes32_tsize: u32vsize: u32weight: u32version: u32locktime: u32vin: *mut btc_transaction_in_tvout: *mut btc_transaction_out_tvin_len: u32vout_len: u32blockhash: bytes32_tconfirmations: u32time: u32blocktime: u32

Trait Implementations

impl Clone for btc_transaction[src]

impl Copy for btc_transaction[src]

impl Debug for btc_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> 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.