[][src]Struct bytom_rust_sdk::transaction::AnnotatedInput

pub struct AnnotatedInput {
    pub input_type: String,
    pub asset_id: String,
    pub asset_alias: String,
    pub asset_definition: String,
    pub amount: u64,
    pub issuance_program: String,
    pub control_program: String,
    pub address: String,
    pub spent_output_id: String,
    pub account_id: String,
    pub account_alias: String,
    pub arbitrary: String,
    pub input_id: String,
    pub witness_arguments: Vec<String>,
    pub sign_data: String,
}

Fields

input_type: Stringasset_id: Stringasset_alias: Stringasset_definition: Stringamount: u64issuance_program: Stringcontrol_program: Stringaddress: Stringspent_output_id: Stringaccount_id: Stringaccount_alias: Stringarbitrary: Stringinput_id: Stringwitness_arguments: Vec<String>sign_data: String

Trait Implementations

impl Clone for AnnotatedInput[src]

impl Debug for AnnotatedInput[src]

impl Default for AnnotatedInput[src]

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

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

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

impl<T, U> Into<U> for T where
    U: From<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 = 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.