[][src]Struct bitcointx::tx::TxIn

pub struct TxIn {
    pub prev_hash: Vec<u8>,
    pub prev_idx: u32,
    pub script_sig: Script,
    pub seq_no: u32,
}

Fields

prev_hash: Vec<u8>prev_idx: u32script_sig: Scriptseq_no: u32

Implementations

impl TxIn[src]

Trait Implementations

Auto Trait Implementations

impl RefUnwindSafe for TxIn

impl Send for TxIn

impl Sync for TxIn

impl Unpin for TxIn

impl UnwindSafe for TxIn

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> Same<T> for T

type Output = T

Should always be Self

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.