[][src]Struct sv::messages::TxIn

pub struct TxIn {
    pub prev_output: OutPoint,
    pub sig_script: Script,
    pub sequence: u32,
}

Transaction input

Fields

The previous output transaction reference

Signature script for confirming authorization

Transaction version as defined by the sender for replacement or negotiation

Methods

impl TxIn
[src]

Returns the size of the transaction input in bytes

Trait Implementations

impl Serializable<TxIn> for TxIn
[src]

impl Clone for TxIn
[src]

Performs copy-assignment from source. Read more

impl Eq for TxIn
[src]

impl Default for TxIn
[src]

impl PartialEq<TxIn> for TxIn
[src]

impl Debug for TxIn
[src]

impl Hash for TxIn
[src]

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

Auto Trait Implementations

impl Send for TxIn

impl Sync for TxIn

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