[][src]Struct bitcoin_cash::UnhashedTx

pub struct UnhashedTx {
    pub version: i32,
    pub inputs: Vec<TxInput>,
    pub outputs: Vec<TxOutput>,
    pub lock_time: u32,
}

Fields

version: i32inputs: Vec<TxInput>outputs: Vec<TxOutput>lock_time: u32

Implementations

impl UnhashedTx[src]

pub fn preimages(&self, sig_hash_flags: &[SigHashFlags]) -> Vec<Vec<TxPreimage>>[src]

pub fn serialize(&self) -> Result<ByteArray>[src]

pub fn hashed(self) -> Tx[src]

Trait Implementations

impl Clone for UnhashedTx[src]

impl Debug for UnhashedTx[src]

impl Default for UnhashedTx[src]

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

impl PartialEq<UnhashedTx> for UnhashedTx[src]

impl Serialize for UnhashedTx[src]

impl StructuralPartialEq for UnhashedTx[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.