[][src]Enum godcoin::tx::TxVariant

pub enum TxVariant {
    V0(TxVariantV0),
}

Variants

Methods

impl TxVariant[src]

pub fn precompute(self) -> TxPrecompData<'static>[src]

pub fn timestamp(&self) -> u64[src]

pub fn sigs(&self) -> &[SigPair][src]

pub fn sigs_mut(&mut self) -> &mut Vec<SigPair>[src]

pub fn script(&self) -> Option<&Script>[src]

pub fn sign(&self, key_pair: &KeyPair) -> SigPair[src]

pub fn append_sign(&mut self, key_pair: &KeyPair)[src]

pub fn serialize(&self, buf: &mut Vec<u8>)[src]

pub fn serialize_without_sigs(&self, buf: &mut Vec<u8>)[src]

pub fn deserialize(cur: &mut Cursor<&[u8]>) -> Option<TxVariant>[src]

Trait Implementations

impl<'a> Into<Cow<'a, TxVariant>> for TxVariant[src]

impl<'a> Into<Cow<'a, TxVariant>> for &'a TxVariant[src]

impl Clone for TxVariant[src]

impl PartialEq<TxVariant> for TxVariant[src]

impl Debug for TxVariant[src]

impl StructuralPartialEq for TxVariant[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

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 = !

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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