[][src]Struct sv::messages::Tx

pub struct Tx {
    pub version: u32,
    pub inputs: Vec<TxIn>,
    pub outputs: Vec<TxOut>,
    pub lock_time: u32,
}

Bitcoin transaction

Fields

Transaction version

Transaction inputs

Transaction outputs

The block number or timestamp at which this transaction is unlocked

Methods

impl Tx
[src]

Calculates the hash of the transaction also known as the txid

Validates a non-coinbase transaction

Returns whether the transaction is the block reward

Trait Implementations

impl Payload<Tx> for Tx
[src]

impl Serializable<Tx> for Tx
[src]

impl Clone for Tx
[src]

Performs copy-assignment from source. Read more

impl Eq for Tx
[src]

impl Default for Tx
[src]

impl PartialEq<Tx> for Tx
[src]

impl Debug for Tx
[src]

impl Hash for Tx
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for Tx

impl Sync for Tx

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Same for T

Should always be Self