[][src]Struct hal::tx::TransactionInfo

pub struct TransactionInfo {
    pub txid: Option<Hash>,
    pub hash: Option<Hash>,
    pub size: Option<usize>,
    pub weight: Option<usize>,
    pub vsize: Option<usize>,
    pub version: Option<u32>,
    pub locktime: Option<u32>,
    pub inputs: Option<Vec<InputInfo>>,
    pub outputs: Option<Vec<OutputInfo>>,
}

Fields

txid: Option<Hash>hash: Option<Hash>size: Option<usize>weight: Option<usize>vsize: Option<usize>version: Option<u32>locktime: Option<u32>inputs: Option<Vec<InputInfo>>outputs: Option<Vec<OutputInfo>>

Trait Implementations

impl GetInfo<TransactionInfo> for Transaction[src]

impl Eq for TransactionInfo[src]

impl Clone for TransactionInfo[src]

impl PartialEq<TransactionInfo> for TransactionInfo[src]

impl Debug for TransactionInfo[src]

impl Serialize for TransactionInfo[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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