[][src]Struct bytom_rust_sdk::transaction::RawTx

pub struct RawTx {
    pub tx_id: String,
    pub version: u64,
    pub size: u64,
    pub time_range: u64,
    pub inputs: Vec<AnnotatedInput>,
    pub outputs: Vec<AnnotatedOutput>,
    pub fee: u64,
}

Fields

tx_id: Stringversion: u64size: u64time_range: u64inputs: Vec<AnnotatedInput>outputs: Vec<AnnotatedOutput>fee: u64

Trait Implementations

impl Debug for RawTx[src]

impl Default for RawTx[src]

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

impl Serialize for RawTx[src]

Auto Trait Implementations

impl RefUnwindSafe for RawTx

impl Send for RawTx

impl Sync for RawTx

impl Unpin for RawTx

impl UnwindSafe for RawTx

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: Deserialize<'de>, 
[src]

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

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

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.